Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for asSnapshot (0.2 sec)

  1. pkg/scheduler/internal/cache/cache_test.go

    			t.Errorf("AddPod failed: %v", err)
    		}
    	}
    
    	snapshot := cache.Dump()
    	if len(snapshot.Nodes) != len(cache.nodes) {
    		t.Errorf("Unequal number of nodes in the cache and its snapshot. expected: %v, got: %v", len(cache.nodes), len(snapshot.Nodes))
    	}
    	for name, ni := range snapshot.Nodes {
    		nItem := cache.nodes[name]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        creator.setString(0, "A")
        creator.setString(1, "B")
        creator.commit()
        cache.close()
        createNewCache()
        val snapshot = cache["k1"]!!
        snapshot.assertValue(0, "A")
        snapshot.assertValue(1, "B")
        snapshot.close()
      }
    
      @ParameterizedTest
      @ArgumentsSource(FileSystemParamProvider::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    				snapshot := cache.NewSnapshot(pods, test.nodes)
    				_, ctx := ktesting.NewTestContext(t)
    				ctx, cancel := context.WithCancel(ctx)
    				defer cancel()
    				p := plugintesting.SetupPluginWithInformers(ctx, t, New, &config.InterPodAffinityArgs{}, snapshot, nil)
    				cycleState := framework.NewCycleState()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  4. hack/local-up-cluster.sh

            ${KUBECTL} --kubeconfig="${CERT_DIR}/admin.kubeconfig" apply -f "${KUBE_ROOT}/cluster/addons/volumesnapshots/volume-snapshot-controller/volume-snapshot-controller-deployment.yaml"
    
            echo "Kubernetes-CSI snapshotter successfully deployed."
        fi
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	Module32First(snapshot Handle, moduleEntry *ModuleEntry32) (err error) = kernel32.Module32FirstW
    //sys	Module32Next(snapshot Handle, moduleEntry *ModuleEntry32) (err error) = kernel32.Module32NextW
    //sys	Process32First(snapshot Handle, procEntry *ProcessEntry32) (err error) = kernel32.Process32FirstW
    //sys	Process32Next(snapshot Handle, procEntry *ProcessEntry32) (err error) = kernel32.Process32NextW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  6. src/syscall/syscall_windows.go

    	}
    	return
    }
    
    func getProcessEntry(pid int) (*ProcessEntry32, error) {
    	snapshot, err := CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0)
    	if err != nil {
    		return nil, err
    	}
    	defer CloseHandle(snapshot)
    	var procEntry ProcessEntry32
    	procEntry.Size = uint32(unsafe.Sizeof(procEntry))
    	if err = Process32First(snapshot, &procEntry); err != nil {
    		return nil, err
    	}
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

            }
    
            if (string.endsWith("SNAPSHOT") && !string.endsWith("-SNAPSHOT")) {
                addViolation(
                        problems,
                        severity,
                        version,
                        fieldName,
                        sourceHint,
                        "uses an unsupported snapshot version format, should be '*-SNAPSHOT' instead.",
                        tracker);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  8. src/runtime/mprof.go

    	//
    	// Hence, we delay information to get consistent snapshots as
    	// of mark termination. Allocations count toward the next mark
    	// termination's snapshot, while sweep frees count toward the
    	// previous mark termination's snapshot:
    	//
    	//              MT          MT          MT          MT
    	//             .·|         .·|         .·|         .·|
    	//          .·˙  |      .·˙  |      .·˙  |      .·˙  |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. src/syscall/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func Process32First(snapshot Handle, procEntry *ProcessEntry32) (err error) {
    	r1, _, e1 := Syscall(procProcess32FirstW.Addr(), 2, uintptr(snapshot), uintptr(unsafe.Pointer(procEntry)), 0)
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func Process32Next(snapshot Handle, procEntry *ProcessEntry32) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

            }
    
            if (string.endsWith("SNAPSHOT") && !string.endsWith("-SNAPSHOT")) {
                addViolation(
                        problems,
                        severity,
                        version,
                        fieldName,
                        sourceHint,
                        "uses an unsupported snapshot version format, should be '*-SNAPSHOT' instead.",
                        tracker);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
Back to top