Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for ctr2 (0.09 sec)

  1. pkg/controller/volume/persistentvolume/pv_controller.go

    		// key = volume.Name, pluginName = provisionerName, operation = "delete"
    		ctrl.operationTimestamps.AddIfNotExist(volume.Name, ctrl.getProvisionerNameFromVolume(volume), "delete")
    		ctrl.scheduleOperation(logger, opName, func() error {
    			_, err := ctrl.deleteVolumeOperation(ctx, volume)
    			if err != nil {
    				// only report error count to "volume_operation_total_errors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  2. pkg/registry/core/pod/strategy_test.go

    					api.DeprecatedAppArmorAnnotationKeyPrefix + "ctr": api.DeprecatedAppArmorAnnotationValueUnconfined,
    				},
    			},
    			Spec: api.PodSpec{
    				Containers: []api.Container{{Name: "ctr"}},
    			},
    		},
    		validation: func(t *testing.T, pod *api.Pod) {
    			assert.Equal(t, map[string]string{
    				api.DeprecatedAppArmorAnnotationKeyPrefix + "ctr": api.DeprecatedAppArmorAnnotationValueUnconfined,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  3. pkg/kubelet/stats/cri_stats_provider_test.go

    	}
    
    	ctrl := gomock.NewController(t)
    	defer ctrl.Finish()
    
    	fakeOS := &kubecontainertest.FakeOS{}
    	fakeOS.ReadDirFn = func(path string) ([]os.DirEntry, error) {
    		var dirEntries []os.DirEntry
    		mockDE := kubecontainertest.NewMockDirEntry(ctrl)
    		switch path {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

        assertEquals("a", itr1.next());
        assertEquals("b", itr1.next());
        Iterator<String> itr2 = Iterators.concat(Iterators.singletonIterator("d"), itr1);
        assertEquals("d", itr2.next());
        assertEquals("c", itr2.next());
      }
    
      public void testConcatPartiallyAdvancedFirst() {
        Iterator<String> itr1 =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Sets.java

              final Iterator<? extends E> itr2 = set2.iterator();
    
              @Override
              @CheckForNull
              protected E computeNext() {
                if (itr1.hasNext()) {
                  return itr1.next();
                }
                while (itr2.hasNext()) {
                  E e = itr2.next();
                  if (!set1.contains(e)) {
                    return e;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/lib.go

    func loadWindowsHostArchives(ctxt *Link) {
    	any := true
    	for i := 0; any && i < 2; i++ {
    		// Link crt2.o (if present) to resolve "atexit" when
    		// using LLVM-based compilers.
    		isunresolved := symbolsAreUnresolved(ctxt, []string{"atexit"})
    		if isunresolved[0] {
    			if p := ctxt.findLibPath("crt2.o"); p != "none" {
    				hostObject(ctxt, "crt2", p)
    			}
    		}
    		if *flagRace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  7. hack/local-up-cluster.sh

        fi
    }
    
    function print_success {
    if [[ "${START_MODE}" != "kubeletonly" ]]; then
      if [[ "${ENABLE_DAEMON}" = false ]]; then
        echo "Local Kubernetes cluster is running. Press Ctrl-C to shut it down."
      else
        echo "Local Kubernetes cluster is running."
      fi
    
      echo
      echo "Configurations:"
      for f in "${TMP_DIR}"/*; do
        echo "  ${f}"
      done
    
      cat <<EOF
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top