Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 112 for heal (0.04 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	{118, "ENOSR", "out of STREAMS resources"},
    	{119, "ETIME", "system call timed out"},
    	{120, "EBADMSG", "next message has wrong type"},
    	{121, "EPROTO", "error in protocol"},
    	{122, "ENODATA", "no message on stream head read q"},
    	{123, "ENOSTR", "fd not associated with a stream"},
    	{124, "ENOTSUP", "unsupported attribute value"},
    	{125, "EMULTIHOP", "multihop is not allowed"},
    	{126, "ENOLINK", "the server link has been severed"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	{118, "ENOSR", "out of STREAMS resources"},
    	{119, "ETIME", "system call timed out"},
    	{120, "EBADMSG", "next message has wrong type"},
    	{121, "EPROTO", "error in protocol"},
    	{122, "ENODATA", "no message on stream head read q"},
    	{123, "ENOSTR", "fd not associated with a stream"},
    	{124, "ENOTSUP", "unsupported attribute value"},
    	{125, "EMULTIHOP", "multihop is not allowed"},
    	{126, "ENOLINK", "the server link has been severed"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  3. src/time/time_test.go

    		y, w := dt.ISOWeek()
    		if w != wt.wex || y != wt.yex {
    			t.Errorf("got %d/%d; expected %d/%d for %d-%02d-%02d",
    				y, w, wt.yex, wt.wex, wt.year, wt.month, wt.day)
    		}
    	}
    
    	// The only real invariant: Jan 04 is in week 1
    	for year := 1950; year < 2100; year++ {
    		if y, w := Date(year, January, 4, 0, 0, 0, 0, UTC).ISOWeek(); y != year || w != 1 {
    			t.Errorf("got %d/%d; expected %d/1 for Jan 04", y, w, year)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    }
    
    func (APIGroup) SwaggerDoc() map[string]string {
    	return map_APIGroup
    }
    
    var map_APIGroupList = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Sets.java

          // It's a weird formula, but tests prove it works.
          int adjust = size() - 1;
          for (int i = 0; i < axes.size(); i++) {
            adjust *= 31;
            adjust = ~~adjust;
            // in GWT, we have to deal with integer overflow carefully
          }
          int hash = 1;
          for (Set<E> axis : axes) {
            hash = 31 * hash + (size() / axis.size() * axis.hashCode());
    
            hash = ~~hash;
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    		// are *inside* of the 'std' module: the 'vendor/' packages that resolve
    		// globally from GOROOT/src/vendor (and are listed as part of 'go list std')
    		// are distinct from the real module dependencies, and cannot import
    		// internal packages from the real module.
    		//
    		// (Note that although the 'vendor/' packages match the 'std' *package*
    		// pattern, they are not part of the std *module*, and do not affect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. src/regexp/syntax/parse.go

    const (
    	opLeftParen = opPseudo + iota
    	opVerticalBar
    )
    
    // maxHeight is the maximum height of a regexp parse tree.
    // It is somewhat arbitrarily chosen, but the idea is to be large enough
    // that no one will actually hit in real use but at the same time small enough
    // that recursion on the Regexp tree will not hit the 1GB Go stack limit.
    // The maximum amount of stack for a single recursive frame is probably
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  8. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP.
      // Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.
      // +optional
      repeated ServerAddressByClientCIDR serverAddressByClientCIDRs = 4;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP.
      // Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.
      // +optional
      // +listType=atomic
      repeated ServerAddressByClientCIDR serverAddressByClientCIDRs = 4;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        // used in the TF graph.  Whereas if we do cluster it, the Fill must be live
        // starting at the end of the XLA cluster, potentially significantly
        // increasing its live range.
        //
        // See b/221997940 for a real-world example of this.
        if (n->op_def().name() == "Fill" &&
            n->out_nodes().begin() != n->out_nodes().end() &&
            absl::c_all_of(n->out_nodes(), [&](Node* user) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top