Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 423 for assign_id (0.47 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation.go

    	"k8s.io/apiserver/pkg/cel/library"
    	"k8s.io/apiserver/pkg/cel/metrics"
    )
    
    const (
    	// ScopedVarName is the variable name assigned to the locally scoped data element of a CEL validation
    	// expression.
    	ScopedVarName = "self"
    
    	// OldScopedVarName is the variable name assigned to the existing value of the locally scoped data element of a
    	// CEL validation expression.
    	OldScopedVarName = "oldSelf"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

            // TPU ops such as tf.TPUReplicatedInput and tf.TPUPartitionedInput into
            // the island as well. These ops are brought in only if they do not
            // already have a cluster assigned to them (via `_replication_info`
            // attribute value).
            // `tf.Identity` op is also treated as special tpu ops since it can play
            // a role as connection between `tf.TPUReplicatedInput` or
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/serializer/ProgressStartEventSerializer.java

            if ((BUILD_OP_CATEGORY_MASK & maxCategory.ordinal()) != maxCategory.ordinal()) {
                // Too many build operation categories to fit into the flags assigned to encode the category - so you will need to adjust the mask above
                throw new IllegalArgumentException("Too many categories to fit into flags.");
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/imagelocality/image_locality.go

    // The size of the image is used as the base score, scaled by a factor which considers how much nodes the image has "spread" to.
    // This heuristic aims to mitigate the undesirable "node heating problem", i.e., pods get assigned to the same or
    // a few nodes due to image locality.
    func scaledImageScore(imageState *framework.ImageStateSummary, totalNumNodes int) int64 {
    	spread := float64(imageState.NumNodes) / float64(totalNumNodes)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 06:17:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/expr.go

    // n is the map indexing or delete Node (to provide Pos).
    func mapKeyArg(fast int, n, key ir.Node, assigned bool) ir.Node {
    	if fast == mapslow {
    		// standard version takes key by reference.
    		// orderState.expr made sure key is addressable.
    		return typecheck.NodAddr(key)
    	}
    	if assigned {
    		// mapassign does distinguish pointer vs. integer key.
    		return key
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  6. pkg/scheduler/eventhandlers.go

    	}
    
    	sched.SchedulingQueue.MoveAllToActiveOrBackoffQueue(logger, queue.AssignedPodDelete, pod, nil, nil)
    }
    
    // assignedPod selects pods that are assigned (scheduled and running).
    func assignedPod(pod *v1.Pod) bool {
    	return len(pod.Spec.NodeName) != 0
    }
    
    // responsibleForPod returns true if the pod has asked to be scheduled by the given scheduler.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:04 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/cpumanager/policy_static.go

    //     physical core, as reported by cAdvisor.
    //
    //   - ASSIGNABLE: Equal to SHARED - RESERVED. Exclusive CPUs are allocated
    //     from this pool.
    //
    //   - EXCLUSIVE ALLOCATIONS: CPU sets assigned exclusively to one container.
    //     These are stored as explicit assignments in the state.
    //
    // When an exclusive allocation is made, the static policy also updates the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/serviceimportcache_test.go

    	// Check that the service has been assigned ClusterSet IPs.
    	ic.checkServiceInstances(t)
    }
    
    func TestServiceCreatedAfterImported(t *testing.T) {
    	c, ic := newTestServiceImportCache(t)
    
    	ic.createServiceImport(t, mcsapi.ClusterSetIP, serviceImportVIPs)
    	ic.createKubeService(t, c)
    
    	// Check that the service has been assigned ClusterSet IPs.
    	ic.checkServiceInstances(t)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/typecheck.go

    	if int(et) < len(_typekind) {
    		s := _typekind[et]
    		if s != "" {
    			return s
    		}
    	}
    	return fmt.Sprintf("etype=%d", et)
    }
    
    // typecheck type checks node n.
    // The result of typecheck MUST be assigned back to n, e.g.
    //
    //	n.Left = typecheck(n.Left, top)
    func typecheck(n ir.Node, top int) (res ir.Node) {
    	if n == nil {
    		return nil
    	}
    
    	// only trace if there's work to do
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/stmt.go

    // license that can be found in the LICENSE file.
    
    package walk
    
    import (
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/ir"
    )
    
    // The result of walkStmt MUST be assigned back to n, e.g.
    //
    //	n.Left = walkStmt(n.Left)
    func walkStmt(n ir.Node) ir.Node {
    	if n == nil {
    		return n
    	}
    
    	ir.SetPos(n)
    
    	walkStmtList(n.Init())
    
    	switch n.Op() {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 15:42:30 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top