Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 764 for tracks (0.53 sec)

  1. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

      // +listType=map
      // +listMapKey=name
      // +optional
      repeated ResourceClaimSchedulingStatus resourceClaims = 1;
    }
    
    // ResourceClaim describes which resources are needed by a resource consumer.
    // Its status tracks whether the resource has been allocated and what the
    // resulting attributes are.
    //
    // This is an alpha type and requires enabling the DynamicResourceAllocation
    // feature gate.
    message ResourceClaim {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/resource/v1alpha2/types.go

    // +genclient
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.26
    
    // ResourceClaim describes which resources are needed by a resource consumer.
    // Its status tracks whether the resource has been allocated and what the
    // resulting attributes are.
    //
    // This is an alpha type and requires enabling the DynamicResourceAllocation
    // feature gate.
    type ResourceClaim struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 10:22:35 UTC 2024
    - 30K bytes
    - Viewed (0)
  3. common/scripts/kind_provisioner.sh

        # To do this, we can replace the server with the IP address of the docker container
        # https://github.com/kubernetes-sigs/kind/issues/1558 tracks this upstream
        CONTAINER_IP=$(docker inspect "${CLUSTER_NAME}-control-plane" --format "{{ .NetworkSettings.Networks.kind.IPAddress }}")
        n=0
        until [ $n -ge 10 ]; do
          n=$((n+1))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 19:12:55 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. src/internal/trace/gc.go

    				// active events will just be redundant.
    				break
    			}
    			// This range is active back to the start of the trace. We're failing to account
    			// for this since we just found out about it now. Fix up the mutator utilization.
    			//
    			// N.B. A trace can't start during a STW, so we don't handle it here.
    			r := ev.Range()
    			switch {
    			case handleMarkAssist(r):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/controllermanager.go

    	ControllerManagerMetrics *controllersmetrics.ControllerManagerMetrics
    
    	// GraphBuilder gives an access to dependencyGraphBuilder which keeps tracks of resources in the cluster
    	GraphBuilder *garbagecollector.GraphBuilder
    }
    
    // IsControllerEnabled checks if the context's controllers enabled or not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            then:
            def e = thrown(MissingValueException)
            e.message == "Cannot query the value of this provider because it has no value available."
        }
    
        def "entry provider tracks value of property"() {
            given:
            def entryProvider = property.getting('key')
    
            when:
            property.set(['key': 'v1'])
            then:
            entryProvider.present
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  7. pilot/pkg/model/endpointshards.go

    	IncrementalPush
    	// FullPush triggers full push - typically used for new services.
    	FullPush
    )
    
    // UpdateServiceEndpoints updates EndpointShards data by clusterID, hostname, IstioEndpoints.
    // It also tracks the changes to ServiceAccounts. It returns whether endpoints need to be pushed and
    // it also returns if they need to be pushed whether a full push is needed or incremental push is sufficient.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/mark_ops_for_outside_compilation.cc

    using mlir::Type;
    using mlir::Value;
    using mlir::WalkResult;
    
    auto* auto_outside_compilation_gauge =
        tensorflow::monitoring::Gauge<bool, 0>::New(
            "/tensorflow/core/use_auto_outside_compilation",
            "Tracks if auto outside compilation is enabled");
    
    #define GEN_PASS_DEF_MARKOPSFOROUTSIDECOMPILATIONPASS
    #include "tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.h.inc"
    
    struct MarkOpsForOutsideCompilation
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  9. src/runtime/mpallocbits.go

    	for k := i/64 + 1; k < j/64; k++ {
    		s += uint(sys.OnesCount64(b[k]))
    	}
    	s += uint(sys.OnesCount64(b[j/64] & ((1 << (j%64 + 1)) - 1)))
    	return
    }
    
    // pallocBits is a bitmap that tracks page allocations for at most one
    // palloc chunk.
    //
    // The precise representation is an implementation detail, but for the
    // sake of documentation, 0s are free pages and 1s are allocated pages.
    type pallocBits pageBits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/flags.cc

      // The `enable_mlir_bridge` flag allows the user to explicitly request that
      // their program is (or isn't) compiled using the MLIR-based TF-to-XLA bridge.
      //
      // The `enable_mlir_bridge_is_explicit` variable tracks whether or not the
      // user has made an explicit request. That is, if this variable is set to
      // true, the program honors the user's request as per `enable_mlir_bridge`; if
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top