Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 151 for assign_id (0.24 sec)

  1. src/go/types/typexpr.go

    	// will issue (see go.dev/issue/25790).
    	typ := obj.Type()
    	if typ == nil || gotType && wantType {
    		check.objDecl(obj, def)
    		typ = obj.Type() // type must have been assigned by Checker.objDecl
    	}
    	assert(typ != nil)
    
    	// The object may have been dot-imported.
    	// If so, mark the respective package as used.
    	// (This code is only needed for dot-imports. Without them,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    ----
    $ gradle tasks
    ----
    
    By default, this report shows only those tasks assigned to a task group.
    
    Groups (such as verification, publishing, help, build...) are available as the header of each section when listing tasks:
    
    ----
    > Task :tasks
    
    Build tasks
    -----------
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/typexpr.go

    	// will issue (see go.dev/issue/25790).
    	typ := obj.Type()
    	if typ == nil || gotType && wantType {
    		check.objDecl(obj, def)
    		typ = obj.Type() // type must have been assigned by Checker.objDecl
    	}
    	assert(typ != nil)
    
    	// The object may have been dot-imported.
    	// If so, mark the respective package as used.
    	// (This code is only needed for dot-imports. Without them,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. src/internal/reflectlite/type.go

    					continue
    				}
    			}
    			if i++; i >= len(t.Methods) {
    				return true
    			}
    		}
    	}
    	return false
    }
    
    // directlyAssignable reports whether a value x of type V can be directly
    // assigned (using memmove) to a value of type T.
    // https://golang.org/doc/go_spec.html#Assignability
    // Ignoring the interface rules (implemented elsewhere)
    // and the ideal constant rules (no ideal constants at run time).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. pkg/scheduler/schedule_one.go

    	}
    	if !status.IsSuccess() {
    		logger.V(1).Info("Failed to bind pod", "pod", klog.KObj(assumed))
    		return
    	}
    
    	fwk.EventRecorder().Eventf(assumed, nil, v1.EventTypeNormal, "Scheduled", "Binding", "Successfully assigned %v/%v to %v", assumed.Namespace, assumed.Name, targetNode)
    }
    
    func getAttemptsLabel(p *framework.QueuedPodInfo) string {
    	// We breakdown the pod scheduling duration by attempts capped to a limit
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  6. CONTRIBUTING.md

    If you have improvements to TensorFlow, send us your pull requests! For those
    just getting started, GitHub has a
    [how-to](https://help.github.com/articles/using-pull-requests/).
    
    TensorFlow team members will be assigned to review your pull requests. Once the
    pull requests are approved and pass continuous integration checks, a TensorFlow
    team member will apply `ready to pull` label to your change. This means we are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:45:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/values.yaml

        #
        # If an administrator expects that any of these conditions may become true in
        # the future, they should ensure their meshes have different Mesh IDs
        # assigned.
        #
        # Within a multicluster mesh, each cluster must be (manually or auto)
        # configured to have the same Mesh ID value. If an existing cluster 'joins' a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    The `Test` task associated with the target inherits its name from the suite.  Other properties of the `Test` task are configurable.
    
    ==== Test Suite Type ====
    Each test suite must be assigned a type.
    Types can be used to group related test suites across multiple Gradle projects within a build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. manifests/charts/istiod-remote/values.yaml

        #
        # If an administrator expects that any of these conditions may become true in
        # the future, they should ensure their meshes have different Mesh IDs
        # assigned.
        #
        # Within a multicluster mesh, each cluster must be (manually or auto)
        # configured to have the same Mesh ID value. If an existing cluster 'joins' a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

        if (failed(result)) return failure();
    
        // If computation is replicated, use aliased device. Otherwise there is only
        // one execution device per core and the device is assigned to the execute
        // op.
        std::string device = replicated
                                 ? tensorflow::GetDeviceAliasForLogicalCore(core)
                                 : tpu_devices.front()[core].device;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top