Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 379 for Equate (0.26 sec)

  1. okhttp/src/test/java/okhttp3/internal/ws/WebSocketHttpTest.kt

    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.extension.RegisterExtension
    
    @Flaky
    @Tag("Slow")
    class WebSocketHttpTest {
      // Flaky https://github.com/square/okhttp/issues/4515
      // Flaky https://github.com/square/okhttp/issues/4953
      @RegisterExtension
      var clientTestRule = configureClientTestRule()
    
      @RegisterExtension
      var platform = PlatformRule()
    
      @RegisterExtension
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  2. helm-releases/minio-5.0.0.tgz

    kind: Secret metadata: name: {{ template "minio.secretName" . }} namespace: {{ .Release.Namespace | quote }} labels: app: {{ template "minio.name" . }} chart: {{ template "minio.chart" . }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} type: Opaque data: rootUser: {{ include "minio.root.username" . | b64enc | quote }} rootPassword: {{ include "minio.root.password" . | b64enc | quote }} {{- if .Values.etcd.clientCert }} etcd_client.crt: {{ .Values.etcd.clientCert | toString | b64enc...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Oct 25 10:20:22 UTC 2022
    - 19.8K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/files/injection-template.yaml

        service.istio.io/canonical-revision: {{ index .ObjectMeta.Labels `service.istio.io/canonical-revision` | default (index .ObjectMeta.Labels `app.kubernetes.io/version`) | default (index .ObjectMeta.Labels `version`) | default "latest"  | quote }}
      annotations: {
        istio.io/rev: {{ .Revision | default "default" | quote }},
        {{- if ge (len $containers) 1 }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/math/PairedStatsAccumulator.java

       *
       * <p>This fit minimizes the root-mean-square error in {@code y} as a function of {@code x}. This
       * error is defined as the square root of the mean of the squares of the differences between the
       * actual {@code y} values of the data and the values predicted by the fit for the {@code x}
       * values (i.e. it is the square root of the mean of the squares of the vertical distances between
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. helm-releases/minio-5.0.6.tgz

    kind: Secret metadata: name: {{ template "minio.secretName" . }} namespace: {{ .Release.Namespace | quote }} labels: app: {{ template "minio.name" . }} chart: {{ template "minio.chart" . }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} type: Opaque data: rootUser: {{ include "minio.root.username" . | b64enc | quote }} rootPassword: {{ include "minio.root.password" . | b64enc | quote }} {{- if .Values.etcd.clientCert }} etcd_client.crt: {{ .Values.etcd.clientCert | toString | b64enc...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 13 06:53:06 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  6. tensorflow/cc/experimental/libtf/tests/function_test.cc

          {"x: float"},
          // Returns
          {"y: float"},
          // Attr def
          {},
          // Nodes
          {{/*ret=*/{"y"},
            /*op=*/"Square",
            /*arg=*/{"x"},
            /*attr=*/{{"T", DT_FLOAT}},
            /*dep=*/{},
            /*device=*/"",
            /*name=*/"square"}});
    }
    
    FunctionDef AddFunc() {
      return FunctionDefHelper::Define(
          // Function Name
          "AddFunc",
          // Args
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 21:44:52 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  7. src/math/big/prime.go

    			return len(n) == 1 && n[0] == p+2
    		}
    		if p == 40 {
    			// We'll never find (d/n) = -1 if n is a square.
    			// If n is a non-square we expect to find a d in just a few attempts on average.
    			// After 40 attempts, take a moment to check if n is indeed a square.
    			t1 = t1.sqrt(n)
    			t1 = t1.sqr(t1)
    			if t1.cmp(n) == 0 {
    				return false
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/math/PairedStats.java

       *
       * <p>This fit minimizes the root-mean-square error in {@code y} as a function of {@code x}. This
       * error is defined as the square root of the mean of the squares of the differences between the
       * actual {@code y} values of the data and the values predicted by the fit for the {@code x}
       * values (i.e. it is the square root of the mean of the squares of the vertical distances between
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testsanitizers/cc_test.go

    				quote = c
    				backslash = false
    			} else if !backslash && quote == c {
    				quote = '\000'
    			} else if (quote == '\000' || quote == '"') && !backslash && c == '\\' {
    				backslash = true
    			} else {
    				backslash = false
    			}
    		}
    	}
    	if !lastSpace {
    		flags = append(flags, GOGCCFLAGS[start:])
    	}
    
    	cmd := exec.Command(CC, flags...)
    	cmd.Args = append(cmd.Args, args...)
    	return cmd, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 20:00:56 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  10. src/encoding/gob/codec_test.go

    		t.Error("normal int did not decode correctly")
    	}
    	if item2.Sq1 == nil || item2.Sq1.Square() != iVal.Square() {
    		t.Error("Int did not decode correctly")
    	}
    	if item2.Sq2 == nil || item2.Sq2.Square() != fVal.Square() {
    		t.Error("Float did not decode correctly")
    	}
    	if item2.Sq3 == nil || item2.Sq3.Square() != vVal.Square() {
    		t.Error("Vector did not decode correctly")
    	}
    	if item2.F != item1.F {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 19 23:03:14 UTC 2023
    - 36.9K bytes
    - Viewed (0)
Back to top