Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for tcCall (0.24 sec)

  1. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

                "schema": {
                  "type": "boolean",
                  "uniqueItems": true
                }
              },
              {
                "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.",
                "in": "query",
                "name": "timeoutSeconds",
                "schema": {
                  "type": "integer",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/LocalCache.java

        h ^= (h >>> 10);
        h += (h << 3);
        h ^= (h >>> 6);
        h += (h << 2) + (h << 14);
        return h ^ (h >>> 16);
      }
    
      /**
       * This method is a convenience for testing. Code should call {@link Segment#newEntry} directly.
       */
      @VisibleForTesting
      ReferenceEntry<K, V> newEntry(K key, int hash, @CheckForNull ReferenceEntry<K, V> next) {
        Segment<K, V> segment = segmentFor(hash);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      // converted to the another for a function call or assignment or there is a
      // common source of inputs for both. Therefore, the While op requires the
      // following pairs of type lists to be cast compatible for the tensor_cast
      // operation:
      //
      // * Operands and cond inputs to call the cond function before the
      //   first iteration.
      // * Operands and body inputs to call the body function for the first
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  4. src/debug/elf/elf.go

    	R_386_TLS_GD_CALL   R_386 = 26 /* call instruction for Sun ABI GD sequence */
    	R_386_TLS_GD_POP    R_386 = 27 /* popl instruction for Sun ABI GD sequence */
    	R_386_TLS_LDM_32    R_386 = 28 /* 32 bit offset to GOT (index,zero) pair */
    	R_386_TLS_LDM_PUSH  R_386 = 29 /* pushl instruction for Sun ABI LD sequence */
    	R_386_TLS_LDM_CALL  R_386 = 30 /* call instruction for Sun ABI LD sequence */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  5. src/net/http/transport_test.go

    			Error(w, deniedMsg, StatusUnauthorized)
    		}))
    		// We need to close cst explicitly here so that in-flight server
    		// requests don't race with the call to SetRSTAvoidanceDelay for a retry.
    		defer cst.close()
    		ts := cst.ts
    		c := ts.Client()
    
    		res, err := c.Post(ts.URL, "application/octet-stream", neverEnding('a'))
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			expectedRemainingBudget: 47,
    		},
    		{
    			name:                    "per-call limit exceeded during messageExpression execution",
    			messageExpression:       `"string 1" + "string 2" + "string 3"`,
    			costBudget:              celconfig.RuntimeCELCostBudget,
    			perCallLimit:            1,
    			expectedValidationErr:   "call cost exceeds limit for messageExpression",
    			expectedRemainingBudget: -1,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	FileSizeHigh      uint32
    	FileSizeLow       uint32
    	Reserved0         uint32
    	Reserved1         uint32
    	FileName          [MAX_PATH - 1]uint16
    	AlternateFileName [13]uint16
    }
    
    // This is the actual system call structure.
    // Win32finddata is what we committed to in Go 1.
    type win32finddata1 struct {
    	FileAttributes    uint32
    	CreationTime      Filetime
    	LastAccessTime    Filetime
    	LastWriteTime     Filetime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    		}
    	}
    
    	if cfg.BuildX {
    		sh.ShowCmd(b.WorkDir, "%s || true", joinUnambiguously(cmdArgs))
    	}
    	cmd := exec.Command(cmdArgs[0], cmdArgs[1:]...)
    	cmd.Dir = b.WorkDir
    	cmd.Env = append(cmd.Environ(), "LC_ALL=C")
    	out, _ := cmd.CombinedOutput()
    	// GCC says "unrecognized command line option".
    	// clang says "unknown argument".
    	// tcc says "unsupported"
    	// AIX says "not recognized"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	_, _, err := registry.Delete(testContext, podA.Name, rest.ValidateAllObjectFunc, nil)
    	if !errors.IsNotFound(err) {
    		t.Errorf("Unexpected error: %v", err)
    	}
    	if afterWasCalled {
    		t.Errorf("Unexpected call to AfterDelete")
    	}
    
    	// create pod
    	_, err = registry.Create(testContext, podA, rest.ValidateAllObjectFunc, &metav1.CreateOptions{})
    	if err != nil {
    		t.Errorf("Unexpected error: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  10. cmd/object-handlers.go

    	w.Header().Del(xhttp.ContentType)
    
    	if _, ok := opts.ObjectAttributes[xhttp.Checksum]; ok {
    		chkSums := objInfo.decryptChecksums(0, r.Header)
    		// AWS does not appear to append part number on this API call.
    		switch {
    		case chkSums["CRC32"] != "":
    			OA.Checksum = new(objectAttributesChecksum)
    			OA.Checksum.ChecksumCRC32 = strings.Split(chkSums["CRC32"], "-")[0]
    		case chkSums["CRC32C"] != "":
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
Back to top