Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 165 for makeID (0.16 sec)

  1. cmd/xl-storage.go

    func (s *xlStorage) setDeleteAttribute(deleteCount uint64) error {
    	attr := "user.total_deletes"
    
    	data := make([]byte, 8)
    	binary.LittleEndian.PutUint64(data, deleteCount)
    	return xattr.LSet(s.formatFile, attr, data)
    }
    
    func (s *xlStorage) setWriteAttribute(writeCount uint64) error {
    	attr := "user.total_writes"
    
    	data := make([]byte, 8)
    	binary.LittleEndian.PutUint64(data, writeCount)
    	return xattr.LSet(s.formatFile, attr, data)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

    function print-windows-node-kubelet-config {
      # Notes:
      # - We don't run any static pods on Windows nodes yet.
    
      # TODO(mtaufen): Does it make any sense to set eviction thresholds for inodes
      # on Windows?
    
      # TODO(pjh, mtaufen): It may make sense to use a different hairpin mode on
      # Windows. We're currently using hairpin-veth, but
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/ReserializingTestCollectionGenerator.java

    import java.io.ObjectInputStream;
    import java.io.ObjectOutputStream;
    import java.util.Collection;
    import java.util.List;
    
    /**
     * Reserializes the sets created by another test set generator.
     *
     * <p>TODO: make CollectionTestSuiteBuilder test reserialized collections
     *
     * @author Jesse Wilson
     */
    @GwtIncompatible
    public class ReserializingTestCollectionGenerator<E> implements TestCollectionGenerator<E> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. src/go/types/unify.go

    		}
    		return false
    	}
    
    	// Unification is symmetric, so we can swap the operands.
    	// Ensure that if we have at least one
    	// - defined type, make sure one is in y
    	// - type parameter recorded with u, make sure one is in x
    	if asNamed(x) != nil || u.asBoundTypeParam(y) != nil {
    		if traceInference {
    			u.tracef("%s ≡ %s\t// swap", y, x)
    		}
    		x, y = y, x
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    				// create sample pods
    				fakePods := make([]example.Pod, tc.totalObjectNum, tc.totalObjectNum)
    				for i := range fakePods {
    					fakePods[i].Namespace = "default"
    					fakePods[i].Name = fmt.Sprintf("pod-%d", i)
    					fakePods[i].ResourceVersion = strconv.Itoa(i)
    					if i%(tc.totalObjectNum/tc.expectObjectNum) == 0 {
    						fakePods[i].Spec.NodeName = "node-0"
    					}
    					data := make([]byte, 1024*2, 1024*2) // 2k labels
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		indexedTrigger: indexedTrigger,
    		watcherIdx:     0,
    		watchers: indexedWatchers{
    			allWatchers:   make(map[namespacedName]watchersMap),
    			valueWatchers: make(map[string]watchersMap),
    		},
    		// TODO: Figure out the correct value for the buffer size.
    		incoming:              make(chan watchCacheEvent, 100),
    		dispatchTimeoutBudget: newTimeBudget(),
    		// We need to (potentially) stop both:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/unify.go

    		}
    		return false
    	}
    
    	// Unification is symmetric, so we can swap the operands.
    	// Ensure that if we have at least one
    	// - defined type, make sure one is in y
    	// - type parameter recorded with u, make sure one is in x
    	if asNamed(x) != nil || u.asBoundTypeParam(y) != nil {
    		if traceInference {
    			u.tracef("%s ≡ %s\t// swap", y, x)
    		}
    		x, y = y, x
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  8. pilot/pkg/model/envoyfilter.go

    	if localEnvoyFilter.WorkloadSelector != nil {
    		out.workloadSelector = localEnvoyFilter.WorkloadSelector.Labels
    	}
    	out.Patches = make(map[networking.EnvoyFilter_ApplyTo][]*EnvoyFilterConfigPatchWrapper)
    	for _, cp := range localEnvoyFilter.ConfigPatches {
    		if cp.Patch == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderCachingIntegrationTest.groovy

                    }
                """
            )
    
            and: "multiple sub-projects"
            settingsFile << """
                include 'foo:foo'
                include 'bar:bar'
            """
    
            // Make the classpath of :foo differ from :bar's
            // thus causing :foo:foo and :bar:bar to have separate ClassLoaders.
            File someLib = file('lib/someLib.jar')
            jarWithClasses(someLib, SomeClass: 'class SomeClass {}')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. cmd/object-api-datatypes_gen.go

    			if err != nil {
    				err = msgp.WrapError(err, "Parts")
    				return
    			}
    			if cap(z.Parts) >= int(zb0002) {
    				z.Parts = (z.Parts)[:zb0002]
    			} else {
    				z.Parts = make([]CompletePart, zb0002)
    			}
    			for za0001 := range z.Parts {
    				bts, err = z.Parts[za0001].UnmarshalMsg(bts)
    				if err != nil {
    					err = msgp.WrapError(err, "Parts", za0001)
    					return
    				}
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 70.1K bytes
    - Viewed (0)
Back to top