Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for tings (0.05 sec)

  1. docs/changelogs/changelog_3x.md

        pings, but it did not track whether the reply pongs were received. With this
        update OkHttp requires that every ping receive a response: if it does not
        the connection will be closed and the listener's `onFailure()` method will
        be called.
    
        Web sockets have always been had pings, but pings on HTTP/2 connections is
        new in this release. Pings are used for connections that are busy carrying
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

         *
         * The default value of 0 disables client-initiated pings.
         */
        fun pingInterval(
          interval: Long,
          unit: TimeUnit,
        ) = apply {
          pingInterval = checkDuration("interval", interval, unit)
        }
    
        /**
         * Sets the interval between HTTP/2 and web socket pings initiated by this client. Use this to
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

                this.files = files;
            }
    
            public List<Object> getThings() {
                return things;
            }
    
            public void setThings(List<Object> things) {
                this.things = things;
            }
    
            public BeanWithDslMethods prop(String property) {
                this.prop = String.format("[%s]", property);
                return this;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  4. hack/local-up-cluster.sh

        install_cni
      fi
    }
    
    # If we are running in the CI, we need a few more things before we can start
    if [[ "${KUBETEST_IN_DOCKER:-}" == "true" ]]; then
      echo "Preparing to test ..."
      "${KUBE_ROOT}"/hack/install-etcd.sh
      export PATH="${KUBE_ROOT}/third_party/etcd:${PATH}"
      KUBE_FASTBUILD=true make ginkgo cross
    
      # install things we need that are missing from the kubekins image
      update_packages
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

                .registerModelMap("things", Bean) { it.registerFactory(Bean) { new Bean(name: it) } }
                .mutate {
                it.path "things" type mmType action { c ->
                    events << "collection mutated"
                    c.create("c1") { events << "$it.name created" }
                }
            }
    
            when:
            def cbNode = registry.atState(ModelPath.path("things"), ModelNode.State.SelfClosed)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{"1e14", decQuantity(1, 14, DecimalExponent)},
    		{"1e13", decQuantity(1, 13, DecimalExponent)},
    		{"1e3", decQuantity(1, 3, DecimalExponent)},
    		{"100.035k", decQuantity(100035, 0, DecimalSI)},
    
    		// Things that look like floating point
    		{"0.001", decQuantity(1, -3, DecimalSI)},
    		{"0.0005k", decQuantity(5, -1, DecimalSI)},
    		{"0.005", decQuantity(5, -3, DecimalSI)},
    		{"0.05", decQuantity(5, -2, DecimalSI)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/dwarf.go

    // DIEs that use loader.Sym as opposed to *sym.Symbol. It is also
    // being used as a place to store tables/maps that are useful as part
    // of type conversion (this is just a convenience; it would be easy to
    // split these things out into another type if need be).
    type dwctxt struct {
    	linkctxt *Link
    	ldr      *loader.Loader
    	arch     *sys.Arch
    
    	// This maps type name string (e.g. "uintptr") to loader symbol for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  8. src/index/suffixarray/sais2.go

    }
    
    func sais_8_64(text []byte, textMax int, sa, tmp []int64) {
    	if len(sa) != len(text) || len(tmp) < textMax {
    		panic("suffixarray: misuse of sais_8_64")
    	}
    
    	// Trivial base cases. Sorting 0 or 1 things is easy.
    	if len(text) == 0 {
    		return
    	}
    	if len(text) == 1 {
    		sa[0] = 0
    		return
    	}
    
    	// Establish slices indexed by text character
    	// holding character frequency and bucket-sort offsets.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    type unwindFlags uint8
    
    const (
    	// unwindPrintErrors indicates that if unwinding encounters an error, it
    	// should print a message and stop without throwing. This is used for things
    	// like stack printing, where it's better to get incomplete information than
    	// to crash. This is also used in situations where everything may not be
    	// stopped nicely and the stack walk may not be able to complete, such as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		UnstructuredTyper: crdserverscheme.NewUnstructuredObjectTyper(),
    	}
    }
    
    func (t UnstructuredObjectTyper) ObjectKinds(obj runtime.Object) ([]schema.GroupVersionKind, bool, error) {
    	// Delegate for things other than Unstructured.
    	if _, ok := obj.(runtime.Unstructured); !ok {
    		return t.Delegate.ObjectKinds(obj)
    	}
    	return t.UnstructuredTyper.ObjectKinds(obj)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top