Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 227 for bursty (0.14 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/components/internal/AbstractBinaryRenderer.java

    import org.gradle.platform.base.internal.VariantAspect;
    import org.gradle.reporting.ReportRenderer;
    import org.gradle.util.internal.GUtil;
    
    import java.util.Map;
    import java.util.TreeMap;
    
    // TODO - bust up this hierarchy and compose using interfaces instead
    public abstract class AbstractBinaryRenderer<T extends BinarySpec> extends ReportRenderer<BinarySpec, TextReportBuilder> {
        private final ModelSchemaStore schemaStore;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/KotlinBuildScriptModelRepositoryTest.kt

                        if (index == 0) {
                            // wait for the first request to be taken off the queue
                            // so the remaining requests are received while the request handler is busy
                            assertThat(
                                pendingRequest.receive(),
                                sameInstance(request)
                            )
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/DaemonFixture.java

         */
        DaemonFixture stops();
    
        /**
         * Asserts that this daemon is currently idle.
         */
        void assertIdle();
    
        /**
         * Asserts that this daemon is currently busy.
         */
        void assertBusy();
    
        /**
         * Asserts that this daemon is in a canceled state.
         */
        void assertCanceled();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonConnector.java

        }
    
        private DaemonClientConnection connectToDaemonWithId(DaemonStartupInfo daemon, ExplainingSpec<DaemonContext> constraint) throws ConnectException {
            // Look for 'our' daemon among the busy daemons - a daemon will start in busy state so that nobody else will grab it.
            for (DaemonInfo daemonInfo : daemonRegistry.getNotIdle()) {
                if (daemonInfo.getUid().equals(daemon.getUid())) {
                    try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  5. cmd/kube-proxy/app/server_test.go

    // TestLoadConfig tests proper operation of loadConfig()
    func TestLoadConfig(t *testing.T) {
    
    	yamlTemplate := `apiVersion: kubeproxy.config.k8s.io/v1alpha1
    bindAddress: %s
    clientConnection:
      acceptContentTypes: "abc"
      burst: 100
      contentType: content-type
      kubeconfig: "/path/to/kubeconfig"
      qps: 7
    clusterCIDR: "%s"
    configSyncPeriod: 15s
    conntrack:
      maxPerCore: 2
      min: 1
      tcpCloseWaitTimeout: 10s
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  6. operator/cmd/mesh/manifest_shared_test.go

    	testenv = &envtest.Environment{}
    	testRestConfig, err := testenv.Start()
    	if err != nil {
    		return err
    	}
    
    	_, err = kubernetes.NewForConfig(testRestConfig)
    	testRestConfig.QPS = 50
    	testRestConfig.Burst = 100
    	if err != nil {
    		return err
    	}
    
    	s := scheme.Scheme
    	s.AddKnownTypes(v1alpha1.SchemeGroupVersion, &v1alpha1.IstioOperator{})
    
    	testClient, err = client.New(testRestConfig, client.Options{Scheme: s})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:28 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/registry/EmbeddedDaemonRegistry.java

     * by the time they are returned to the caller. Clients must therefore be prepared for this and expect connection failures, either through
     * the endpoint disappearing or becoming busy between asking for idle daemons and trying to connect.
     */
    public class EmbeddedDaemonRegistry implements DaemonRegistry {
        private final List<DaemonStopEvent> stopEvents = new CopyOnWriteArrayList<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. docs/tr/docs/python-types.md

    {!../../../docs_src/python_types/tutorial002.py!}
    ```
    
    Bu, aşağıdaki gibi varsayılan değerleri bildirmekle aynı şey değildir:
    
    ```Python
        first_name="john", last_name="doe"
    ```
    
    Bu tamamen farklı birşey
    
    İki nokta üst üste (`:`) kullanıyoruz , eşittir (`=`) değil.
    
    Normalde tip belirteçleri eklemek, kod üzerinde olacakları değiştirmez.
    
    Şimdi programı sıfırdan birdaha yazdığınızı hayal edin.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. cmd/erasure-common.go

    				// - Do not consume disks which are not reachable
    				//   unformatted or simply not accessible for some reason.
    				//
    				// - Do not consume disks which are being healed
    				//
    				// - Future: skip busy disks
    				return
    			}
    
    			mu.Lock()
    			newDisks = append(newDisks, disks[i])
    			mu.Unlock()
    		}()
    	}
    	wg.Wait()
    	return newDisks
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. cmd/kube-proxy/app/server_linux_test.go

    		}
    
    		_, err = file.WriteString(`apiVersion: kubeproxy.config.k8s.io/v1alpha1
    bindAddress: 0.0.0.0
    bindAddressHardFail: false
    clientConnection:
      acceptContentTypes: ""
      burst: 10
      contentType: application/vnd.kubernetes.protobuf
      kubeconfig: /var/lib/kube-proxy/kubeconfig.conf
      qps: 5
    clusterCIDR: 10.244.0.0/16
    configSyncPeriod: 15m0s
    conntrack:
      maxPerCore: 32768
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top