Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for unusual (0.15 sec)

  1. pkg/kubelet/kubelet_pods_test.go

    				# TYPE kubelet_orphaned_runtime_pods_total counter
    				kubelet_orphaned_runtime_pods_total 1
    				`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    			}`,
    			wantErr: `oidc: could not expand distributed claims: jwt returned by distributed claim endpoint "{{.URL}}/groups" did not contain claim: groups`,
    		},
    		{
    			name: "groups-distributed-unusual-name",
    			options: Options{
    				JWTAuthenticator: apiserver.JWTAuthenticator{
    					Issuer: apiserver.Issuer{
    						URL:       "{{.URL}}",
    						Audiences: []string{"my-client"},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    			"int8", "uint8", "int16", "uint16",
    			"int32", "uint32", "int64", "uint64",
    			"int", "uint", "uintptr",
    			"float32", "float64",
    		}
    
    		func main() {
    			// all pairs but in an unusual order,
    			// to emit all the int8, uint8 cases
    			// before n grows too big.
    			n := 1
    			for i, f := range numbers {
    				for _, g := range numbers[i:] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    		throw("exited a goroutine internally locked to the OS thread")
    	}
    	gfput(pp, gp)
    	if locked {
    		// The goroutine may have locked this thread because
    		// it put it in an unusual kernel state. Kill it
    		// rather than returning it to the thread pool.
    
    		// Return to mstart, which will release the P and exit
    		// the thread.
    		if GOOS != "plan9" { // See golang.org/issue/22227.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    // prints an error to standard error for each erroneous package and
    // omits the packages from consideration during the usual printing.
    // With the -e flag, the list command never prints errors to standard
    // error and instead processes the erroneous packages with the usual
    // printing. Erroneous packages will have a non-empty ImportPath and
    // a non-nil Error field; other information may or may not be missing
    // (zeroed).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    	}
    
    	// Determine canonical package path and directory.
    	// For a local import the identifier is the pseudo-import path
    	// we create from the full directory to the package.
    	// Otherwise it is the usual import path.
    	// For vendored imports, it is the expanded form.
    	//
    	// Note that when modules are enabled, local import paths are normally
    	// canonicalized by modload.LoadPackages before now. However, if there's an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. src/reflect/value.go

    	return (x + n - 1) &^ (n - 1)
    }
    
    // callMethod is the call implementation used by a function returned
    // by makeMethodValue (used by v.Method(i).Interface()).
    // It is a streamlined version of the usual reflect call: the caller has
    // already laid out the argument frame for us, so we don't have
    // to deal with individual Values for each argument.
    // It is in this file so that it can be next to the two similar functions above.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let description = [{
        Extract the islands containing a TPU cluster computation into an outlined
        function in a nested module. This will allow to run the usual bridge on this
        nested module which now exhibits a more friendly "V2-like" structure.
        This is only intended for V1 compatibility mode where the bridge runs without
        feed/fetches on session create/extend.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  9. api/maven-api-model/src/main/mdo/maven.mdo

          <version>4.0.0+</version>
          <description>Deployment repository contains the information needed for deploying to the remote
            repository, which adds uniqueVersion property to usual repositories for download.</description>
          <fields>
            <field>
              <name>uniqueVersion</name>
              <description>Whether to assign snapshots a unique version comprised of the timestamp and
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      if (!getType().cast<ShapedType>().getElementType().isSignlessIntOrFloat())
        return nullptr;
    
      // TODO(b/280099953) This algorithm only works for fixed width element types.
      // This is the usual case, but consider falling back to old approach
      // if transposing string tensors becomes needed while folding.
      if (!input_tensor.getElementType().isIntOrIndexOrFloat()) return nullptr;
      SmallVector<int64_t> perms;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top