Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,703 for 3000 (0.03 sec)

  1. pkg/scheduler/framework/plugins/noderesources/least_allocated_test.go

    			requestedPod: st.MakePod().
    				Req(map[v1.ResourceName]string{"cpu": "1000", "memory": "2000"}).
    				Req(map[v1.ResourceName]string{"cpu": "2000", "memory": "3000"}).
    				Obj(),
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(map[v1.ResourceName]string{"cpu": "4000", "memory": "10000"}).Obj(),
    				st.MakeNode().Name("node2").Capacity(map[v1.ResourceName]string{"cpu": "6000", "memory": "10000"}).Obj(),
    			},
    			existingPods:   nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 18.8K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/noderesources/most_allocated_test.go

    			requestedPod: st.MakePod().
    				Req(map[v1.ResourceName]string{"cpu": "1000", "memory": "2000"}).
    				Req(map[v1.ResourceName]string{"cpu": "2000", "memory": "3000"}).
    				Obj(),
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(map[v1.ResourceName]string{"cpu": "4000", "memory": "10000"}).Obj(),
    				st.MakeNode().Name("node2").Capacity(map[v1.ResourceName]string{"cpu": "6000", "memory": "10000"}).Obj(),
    			},
    			existingPods:   nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 16K bytes
    - Viewed (0)
  3. pilot/pkg/model/context_test.go

    	if port := model.ParsePort("localhost:3000"); port != 3000 {
    		t.Errorf("ParsePort(localhost:3000) => Got %d, want 3000", port)
    	}
    	if port := model.ParsePort("localhost"); port != 0 {
    		t.Errorf("ParsePort(localhost) => Got %d, want 0", port)
    	}
    	if port := model.ParsePort("127.0.0.1:3000"); port != 3000 {
    		t.Errorf("ParsePort(127.0.0.1:3000) => Got %d, want 3000", port)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionStatsTest.groovy

                    new GarbageCollectionEvent(0000, new MemoryUsage(0, 100, 1000, 1000), 1),
                    new GarbageCollectionEvent(1000, new MemoryUsage(0, 250, 1000, 1000), 2),
                    new GarbageCollectionEvent(2000, new MemoryUsage(0, 500, 1000, 1000), 3),
                    new GarbageCollectionEvent(3000, new MemoryUsage(0, 750, 1000, 1000), 6),
                    new GarbageCollectionEvent(4000, new MemoryUsage(0, 900, 1000, 1000), 13)
            ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactoryTest.java

            server.setPassword("abc123");
            Xpp3Dom configuration = new Xpp3Dom("configuration");
            Xpp3Dom connectTimeoutConfiguration = new Xpp3Dom("connectTimeout");
            connectTimeoutConfiguration.setValue("3000");
            configuration.addChild(connectTimeoutConfiguration);
    
            server.setConfiguration(configuration);
    
            MavenExecutionRequest request = new DefaultMavenExecutionRequest();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. manifests/addons/values-grafana.yaml

      GF_SECURITY_ADMIN_USER: "admin"
      GF_SECURITY_ADMIN_PASSWORD: "admin"
      GF_AUTH_BASIC_ENABLED: "false"
      GF_AUTH_ANONYMOUS_ENABLED: "true"
      GF_AUTH_ANONYMOUS_ORG_ROLE: Admin
    
    # Expose on port 3000 to match the Istio docs
    service:
      port: 3000
    
    securityContext: null
    
    # Set up out dashboards
    dashboardProviders:
      dashboardproviders.yaml:
        apiVersion: 1
        providers:
          - name: "istio"
            orgId: 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        @Size(max = 3000)
        public String notificationLogin;
    
        @Size(max = 3000)
        public String notificationSearchTop;
    
        @Size(max = 10)
        public String logLevel;
    
        @Size(max = 1000)
        public String storageEndpoint;
    
        @Size(max = 1000)
        public String storageAccessKey;
    
        @Size(max = 1000)
        public String storageSecretKey;
    
        @Size(max = 1000)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/workerApi/md5ClassloaderIsolation/groovy/buildSrc/src/main/java/GenerateMD5.java

                InputStream stream = new FileInputStream(sourceFile);
                System.out.println("Generating MD5 for " + sourceFile.getName() + "...");
                // Artificially make this task slower.
                Thread.sleep(3000);
                FileUtils.writeStringToFile(md5File, DigestUtils.md5Hex(stream), (String) null);
            } catch (Exception e) {
                throw new RuntimeException(e);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 923 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/workerApi/md5ClassloaderIsolation/kotlin/buildSrc/src/main/java/GenerateMD5.java

                InputStream stream = new FileInputStream(sourceFile);
                System.out.println("Generating MD5 for " + sourceFile.getName() + "...");
                // Artificially make this task slower.
                Thread.sleep(3000);
                FileUtils.writeStringToFile(md5File, DigestUtils.md5Hex(stream), (String) null);
            } catch (Exception e) {
                throw new RuntimeException(e);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 923 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/workerApi/md5NoIsolation/kotlin/buildSrc/src/main/java/GenerateMD5.java

                InputStream stream = new FileInputStream(sourceFile);
                System.out.println("Generating MD5 for " + sourceFile.getName() + "...");
                // Artificially make this task slower.
                Thread.sleep(3000);
                FileUtils.writeStringToFile(md5File, DigestUtils.md5Hex(stream), (String) null);
            } catch (Exception e) {
                throw new RuntimeException(e);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 930 bytes
    - Viewed (0)
Back to top