Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for startm (0.33 sec)

  1. cmd/erasure-multipart.go

    		MaxSize:      1 << 20, // Each part should realistically not be > 1MiB.
    		MaxResults:   maxParts + 1,
    		MetadataOnly: true,
    	}
    
    	start := partNumberMarker + 1
    	end := start + maxParts
    
    	// Parts are 1 based, so index 0 is part one, etc.
    	for i := start; i <= end; i++ {
    		req.Files = append(req.Files, fmt.Sprintf("part.%d.meta", i))
    	}
    
    	var disk StorageAPI
    	disks := er.getOnlineLocalDisks()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  2. tests/integration/telemetry/api/dashboard_test.go

    func checkMetric(cl cluster.Cluster, p prometheus.Instance, query string, excluded []string) error {
    	query = replacer.Replace(query)
    	value, _, err := p.APIForCluster(cl).QueryRange(context.Background(), query, promv1.Range{
    		Start: time.Now().Add(-time.Minute),
    		End:   time.Now(),
    		Step:  time.Second,
    	})
    	if err != nil {
    		return fmt.Errorf("failure executing query (%s): %v", query, err)
    	}
    	if value == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/TestThread.java

      public TestThread(L lockLikeObject, String threadName) {
        super(threadName);
        this.lockLikeObject = checkNotNull(lockLikeObject);
        start();
      }
    
      // Thread.stop() is okay because all threads started by a test are dying at the end of the test,
      // so there is no object state put at risk by stopping the threads abruptly. In some cases a test
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

                String taskPath = path(task);
                executedTasks.add(taskPath);
            }
    
            @Override
            public void afterExecute(Task task, TaskState state) {
                String taskPath = path(task);
                if (state.getSkipped()) {
                    skippedTasks.add(taskPath);
                }
            }
    
            private String path(Task task) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  5. maven-core/pom.xml

                  <include>org.apache.maven.usability</include>
                </includes>
                <!-- allowed non-binary backwards compatible changes -->
                <excludes>
                  <!-- START default constructor on Plexus/JSR 330 components -->
                  <exclude>org.apache.maven.lifecycle.DefaultLifecycleExecutor#DefaultLifecycleExecutor()</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/project/ProjectBuilderTest.java

                @Override
                public void run() {
                    artifactsResultInAnotherThread.set(project.getArtifacts().size());
                }
            });
            t.start();
            t.join();
            assertEquals(project.getArtifacts().size(), artifactsResultInAnotherThread.get());
        }
    
        @Test
        void testDontResolveDependencies() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  7. samples/bookinfo/src/productpage/productpage.py

            self.file.flush()
    
    
    if __name__ == '__main__':
        if len(sys.argv) < 2:
            logging.error("usage: %s port" % (sys.argv[0]))
            sys.exit(-1)
    
        p = int(sys.argv[1])
        logging.info("start at port %s" % (p))
        # Make it compatible with IPv6 if Linux
        if sys.platform == "linux":
            app.run(host='::', port=p, debug=False, threaded=True)
        else:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. internal/kms/config.go

    	// which does not exist. The downside of this check is that if
    	// MINIO_KMS_SECRET_KEY_FILE is set to a path that does not exist,
    	// the server does not complain and start without a KMS config.
    	//
    	// Until the container image changes, this behavior has to be preserved.
    	if isPresent(EnvKMSSecretKey) && os.Getenv(EnvKMSSecretKey) == "" {
    		os.Unsetenv(EnvKMSSecretKey)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 14:31:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. pkg/features/kube_features.go

    	// owner: @haircommander
    	// kep: https://kep.k8s.io/2364
    	// alpha: v1.23
    	//
    	// Configures the Kubelet to use the CRI to populate pod and container stats, instead of supplimenting with stats from cAdvisor.
    	// Requires the CRI implementation supports supplying the required stats.
    	PodAndContainerStatsFromCRI featuregate.Feature = "PodAndContainerStatsFromCRI"
    
    	// owner: @ahg-g
    	// alpha: v1.21
    	// beta: v1.22
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_inbound.go

    	for _, p := range ports {
    		ranges = append(ranges, &listener.ListenerFilterChainMatchPredicate{Rule: &listener.ListenerFilterChainMatchPredicate_DestinationPortRange{
    			// Range is [start, end)
    			DestinationPortRange: &envoytype.Int32Range{
    				Start: int32(p),
    				End:   int32(p + 1),
    			},
    		}})
    	}
    	if len(ranges) > 1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top