Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for maxNode (0.23 sec)

  1. guava/src/com/google/common/io/Files.java

       * @see FileChannel#map(MapMode, long, long)
       * @since 2.0
       */
      public static MappedByteBuffer map(File file, MapMode mode) throws IOException {
        return mapInternal(file, mode, -1);
      }
    
      /**
       * Maps a file in to memory as per {@link FileChannel#map(java.nio.channels.FileChannel.MapMode,
       * long, long)} using the requested {@link MapMode}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. cmd/kubemark/app/hollow_node.go

    	RegisterWithTaints      []v1.Taint
    	MaxPods                 int
    	ExtendedResources       map[string]string
    	UseHostImageService     bool
    
    	// Deprecated config; remove these with the corresponding flags
    	UseRealProxier       bool
    	ProxierSyncPeriod    time.Duration
    	ProxierMinSyncPeriod time.Duration
    }
    
    const (
    	maxPods     = 110
    	podsPerCore = 0
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/io/Files.java

       * @see FileChannel#map(MapMode, long, long)
       * @since 2.0
       */
      public static MappedByteBuffer map(File file, MapMode mode) throws IOException {
        return mapInternal(file, mode, -1);
      }
    
      /**
       * Maps a file in to memory as per {@link FileChannel#map(java.nio.channels.FileChannel.MapMode,
       * long, long)} using the requested {@link MapMode}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. pkg/kubelet/userns/userns_manager_test.go

    		{
    			name:           "range can't fit maxPods",
    			mappingFirstID: 65536,
    			mappingLen:     65536,
    			maxPods:        2,
    		},
    	}
    
    	for _, tc := range cases {
    		t.Run(tc.name, func(t *testing.T) {
    			testUserNsPodsManager := &testUserNsPodsManager{
    				podDir:         t.TempDir(),
    				mappingFirstID: tc.mappingFirstID,
    				mappingLen:     tc.mappingLen,
    				maxPods:        tc.maxPods,
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    // SelectTopNodePtrs returns a set of the top maxNodes *Node in a graph.
    func (g *Graph) SelectTopNodePtrs(maxNodes int, visualMode bool) NodePtrSet {
    	set := make(NodePtrSet)
    	for _, node := range g.selectTopNodes(maxNodes, visualMode) {
    		set[node] = true
    	}
    	return set
    }
    
    // SelectTopNodes returns a set of the top maxNodes nodes in a graph.
    func (g *Graph) SelectTopNodes(maxNodes int, visualMode bool) NodeSet {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/io/FilesTest.java

    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.io.RandomAccessFile;
    import java.nio.ByteBuffer;
    import java.nio.MappedByteBuffer;
    import java.nio.channels.FileChannel.MapMode;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.List;
    import java.util.Random;
    import junit.framework.TestSuite;
    
    /**
     * Unit test for {@link Files}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/io/FilesTest.java

    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.io.RandomAccessFile;
    import java.nio.ByteBuffer;
    import java.nio.MappedByteBuffer;
    import java.nio.channels.FileChannel.MapMode;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.List;
    import java.util.Random;
    import junit.framework.TestSuite;
    
    /**
     * Unit test for {@link Files}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  8. pkg/kubelet/apis/config/validation/validation_test.go

    		errMsg: "invalid configuration: maxOpenFiles (--max-open-files) -1 must not be a negative number",
    	}, {
    		name: "invalid MaxPods",
    		configure: func(conf *kubeletconfig.KubeletConfiguration) *kubeletconfig.KubeletConfiguration {
    			conf.MaxPods = -1
    			return conf
    		},
    		errMsg: "invalid configuration: maxPods (--max-pods) -1 must not be a negative number",
    	}, {
    		name: "invalid OOMScoreAdj",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. pkg/kubelet/apis/config/validation/validation.go

    		allErrors = append(allErrors, fmt.Errorf("invalid configuration: maxOpenFiles (--max-open-files) %v must not be a negative number", kc.MaxOpenFiles))
    	}
    	if kc.MaxPods < 0 {
    		allErrors = append(allErrors, fmt.Errorf("invalid configuration: maxPods (--max-pods) %v must not be a negative number", kc.MaxPods))
    	}
    	if utilvalidation.IsInRange(int(kc.OOMScoreAdj), -1000, 1000) != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. pkg/kubelet/preemption/preemption_test.go

    	burstable             = "burstable"
    	highRequestBurstable  = "high-request-burstable"
    	guaranteed            = "guaranteed"
    	highRequestGuaranteed = "high-request-guaranteed"
    	tinyBurstable         = "tiny"
    	maxPods               = 110
    )
    
    type fakePodKiller struct {
    	killedPods          []*v1.Pod
    	errDuringPodKilling bool
    }
    
    func newFakePodKiller(errPodKilling bool) *fakePodKiller {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 24 10:04:08 UTC 2022
    - 19.2K bytes
    - Viewed (0)
Back to top