Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Usages (0.54 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

                // This is not safe, as the execution of this block may not occur, or may not occur in the order expected
              configurations["myConfig"].attributes {
                  attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage::class.java, Usage.JAVA_RUNTIME))
              }
        }
    ```
    
    === Deprecations
    
    [[compile_options_generated_sources_directory]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                kDocQualifiersToShorten = emptyList(),
            )
    
            val towerContext = FirTowerDataContextProvider.create(firResolveSession, declarationToVisit)
    
            //TODO: collect all usages of available symbols in the file and prevent importing symbols that could introduce name clashes, which
            // may alter the meaning of existing code.
            val collector = ElementsToShortenCollector(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.31.md

    ogle.com/artifacts/docker/k8s-artifacts-prod/southamerica-east1/images/conformance) | [amd64](https://console.cloud.google.com/artifacts/docker/k8s-artifacts-prod/southamerica-east1/images/conformance-amd64), [arm64](https://console.cloud.google.com/artifacts/docker/k8s-artifacts-prod/southamerica-east1/images/conformance-arm64), [ppc64le](https://console.cloud.google.com/artifacts/docker/k8s-artifacts-prod/southamerica-east1/images/conformance-ppc64le), [s390x](https://console.cloud.google.com/...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			name:   "filter returns two items split across multiple pages",
    			prefix: "/pods",
    			pred: storage.SelectionPredicate{
    				Field: fields.OneTermEqualSelector("metadata.name", "foo"),
    				Label: labels.Everything(),
    				Limit: 2,
    			},
    			expectedOut: []example.Pod{*preset[2], *preset[4]},
    		},
    		{
    			name:   "filter returns two items split across multiple pages with current resource version and match=NotOlderThan",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  5. cmd/kubelet/app/server.go

    	cleanFlagSet.BoolP("help", "h", false, fmt.Sprintf("help for %s", cmd.Name()))
    
    	// ugly, but necessary, because Cobra's default UsageFunc and HelpFunc pollute the flagset with global flags
    	const usageFmt = "Usage:\n  %s\n\nFlags:\n%s"
    	cmd.SetUsageFunc(func(cmd *cobra.Command) error {
    		fmt.Fprintf(cmd.OutOrStderr(), usageFmt, cmd.UseLine(), cleanFlagSet.FlagUsagesWrapped(2))
    		return nil
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. src/net/http/transport.go

    type wantConnQueue struct {
    	// This is a queue, not a deque.
    	// It is split into two stages - head[headPos:] and tail.
    	// popFront is trivial (headPos++) on the first stage, and
    	// pushBack is trivial (append) on the second stage.
    	// If the first stage is empty, popFront can swap the
    	// first and second stages to remedy the situation.
    	//
    	// This two-stage split is analogous to the use of two lists
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller.go

    // indexes or invalid indexes or some pods don't have indexes.
    // Sorts candidate pods in the order such that not-ready < ready, unscheduled
    // < scheduled, and pending < running. This ensures that we delete pods
    // in the earlier stages whenever possible.
    func activePodsForRemoval(job *batch.Job, pods []*v1.Pod, rmAtLeast int) []*v1.Pod {
    	var rm, left []*v1.Pod
    
    	if isIndexedJob(job) {
    		rm = make([]*v1.Pod, 0, rmAtLeast)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

    # node startup steps!
    # Pull-InfraContainer must be called AFTER Verify-WorkerServices.
    function Pull-InfraContainer {
      $name, $label = ${env:INFRA_CONTAINER} -split ':',2
      if (-not ("$(& crictl images)" -match "$name.*$label")) {
        & crictl pull ${env:INFRA_CONTAINER}
        if (!$?) {
          throw "Error running 'crictl pull ${env:INFRA_CONTAINER}'"
        }
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	result := m.SyncPod(context.Background(), pod, &kubecontainer.PodStatus{}, []v1.Secret{}, backOff)
    	assert.NoError(t, result.Error())
    	assert.Equal(t, 2, len(fakeRuntime.Containers))
    	assert.Equal(t, 2, len(fakeImage.Images))
    	assert.Equal(t, 1, len(fakeRuntime.Sandboxes))
    	for _, sandbox := range fakeRuntime.Sandboxes {
    		assert.Equal(t, runtimeapi.PodSandboxState_SANDBOX_READY, sandbox.State)
    	}
    	for _, c := range fakeRuntime.Containers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/init.go

    		reason = fmt.Sprintf("bad module path inferred from directory in GOPATH: %v", badPathErr)
    	}
    	msg := `cannot determine module path for source directory %s (%s)
    
    Example usage:
    	'go mod init example.com/m' to initialize a v0 or v1 module
    	'go mod init example.com/m/v2' to initialize a v2 module
    
    Run 'go help mod init' for more information.
    `
    	return "", fmt.Errorf(msg, dir, reason)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
Back to top