Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 224 for run1 (0.29 sec)

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

    You can run the tests for `buildSrc` in the same way as projects in included builds, for example by running `gradle buildSrc:build`.
    
    ==== `buildFinished { }` hook for `buildSrc` runs after all tasks have executed
    
    The `buildFinished {}` hook for `buildSrc` now runs after all tasks have completed. In previous releases this hook would run immediately after
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    			name:                      "skip checking resource request with quantity zero",
    			wantInsufficientResources: []InsufficientResource{},
    		},
    	}
    
    	for _, test := range enoughPodsTests {
    		t.Run(test.name, func(t *testing.T) {
    			node := v1.Node{Status: v1.NodeStatus{Capacity: makeResources(10, 20, 32, 5, 20, 5), Allocatable: makeAllocatableResources(10, 20, 32, 5, 20, 5)}}
    			test.nodeInfo.SetNode(&node)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  3. pkg/kubelet/nodestatus/setters_test.go

    			},
    			expectedAnnotations: map[string]string{
    				"alpha.kubernetes.io/provided-node-ip": "10.1.1.1",
    			},
    			shouldError: false,
    		},
    	}
    	for _, testCase := range cases {
    		t.Run(testCase.name, func(t *testing.T) {
    			ctx := context.Background()
    			// testCase setup
    			existingNode := &v1.Node{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:        testKubeletHostname,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  4. pkg/controller/daemon/daemon_controller.go

    	return nil
    }
    
    // manage manages the scheduling and running of Pods of ds on nodes.
    // After figuring out which nodes should run a Pod of ds but not yet running one and
    // which nodes should not run a Pod of ds but currently running one, it calls function
    // syncNodes with a list of pods to remove and a list of nodes to run a Pod of ds.
    func (dsc *DaemonSetsController) manage(ctx context.Context, ds *apps.DaemonSet, nodeList []*v1.Node, hash string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/cases/tables9.0.0.go

    			return 0, 3 // Illegal UTF-8: not a continuation byte.
    		}
    		return t.lookupValue(uint32(i), c3), 4
    	}
    	// Illegal rune
    	return 0, 1
    }
    
    // lookupUnsafe returns the trie value for the first UTF-8 encoding in s.
    // s must start with a full and valid UTF-8 encoded rune.
    func (t *caseTrie) lookupUnsafe(s []byte) uint16 {
    	c0 := s[0]
    	if c0 < 0x80 { // is ASCII
    		return caseValues[c0]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 92.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    By default, bootstrapping is incremental, which means that if you run it multiple times, information is _added_ to the file and in particular you can rely on your VCS to check the diffs.
    There are situations where you would just want to _see_ what the generated verification metadata file would look like without actually changing the existing one or overwriting it.
    
    For this purpose, you can just add `--dry-run`:
    
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  7. pkg/apis/certificates/validation/validation_test.go

    				field.Duplicate(specPath.Child("usages").Index(1), capi.KeyUsage("unknown")),
    			},
    		},
    	}
    	for name, test := range tests {
    		t.Run(name, func(t *testing.T) {
    			el := ValidateCertificateSigningRequestCreate(&test.csr)
    			if !reflect.DeepEqual(el, test.errs) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  8. internal/s3select/select_test.go

            </JSON>
        </OutputSerialization>
        <RequestProgress>
            <Enabled>FALSE</Enabled>
        </RequestProgress>
    </SelectObjectContentRequest>`
    
    	for _, testCase := range testTable {
    		t.Run(testCase.name, func(t *testing.T) {
    			// Hack cpuid to the CPU doesn't appear to support AVX2.
    			// Restore whatever happens.
    			if cpuid.CPU.Supports(cpuid.AVX2) {
    				cpuid.CPU.Disable(cpuid.AVX2)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

          }
          break;
        }
      }
    
      /**
       * Callback method that is called exactly once after the future is completed.
       *
       * <p>If {@link #interruptTask} is also run during completion, {@link #afterDone} runs after it.
       *
       * <p>The default implementation of this method in {@code AbstractFuture} does nothing. This is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  10. guava/src/com/google/common/util/concurrent/AbstractFuture.java

          }
          break;
        }
      }
    
      /**
       * Callback method that is called exactly once after the future is completed.
       *
       * <p>If {@link #interruptTask} is also run during completion, {@link #afterDone} runs after it.
       *
       * <p>The default implementation of this method in {@code AbstractFuture} does nothing. This is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
Back to top