Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 2,762 for wbMove (0.11 sec)

  1. src/runtime/float_test.go

    	for _, i := range []uint64{
    		0x8234508000000001, // from issue48807
    		1<<56 + 1<<32 + 1,
    	} {
    		got := float32(i)
    		dontwant := float32(float64(i))
    		if got == dontwant {
    			// The test cases above should be uint64s such that
    			// this equality doesn't hold. These examples trigger
    			// the case where using an intermediate float64 doesn't work.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 07 18:34:24 UTC 2021
    - 699 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/testdata/unsafe_test.go

    	// Call gc.
    	runtime.GC()
    
    	// Convert back to uintptr.
    	y := uintptr(p)
    
    	// Mess with y so that the subsequent cast
    	// to unsafe.Pointer can't be combined with the
    	// uintptr cast above.
    	var z uintptr
    	if always {
    		z = y
    	} else {
    		z = 0
    	}
    	return (*[8]uint)(unsafe.Pointer(z))
    }
    
    // g_ssa is the same as f_ssa, but with a bit of pointer
    // arithmetic for added insanity.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 3K bytes
    - Viewed (2)
  3. hack/testdata/redis-slave-replicaset.yaml

              value: dns
              # If your cluster config does not include a dns service, then to
              # instead access an environment variable to find the master
              # service's host, comment out the 'value: dns' line above, and
              # uncomment the line below.
              # value: env
            ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 19 16:19:12 UTC 2018
    - 981 bytes
    - Viewed (0)
  4. pilot/docker/Dockerfile.pilot

    # The following section is used as base image if BASE_DISTRIBUTION=distroless
    FROM ${ISTIO_BASE_REGISTRY}/distroless:${BASE_VERSION} as distroless
    
    # This will build the final image based on either debug or distroless from above
    # hadolint ignore=DL3006
    FROM ${BASE_DISTRIBUTION:-debug}
    
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/pilot-discovery /usr/local/bin/pilot-discovery
    
    # Copy templates for bootstrap generation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 19 15:53:08 UTC 2022
    - 1K bytes
    - Viewed (0)
  5. licenses/github.com/klauspost/compress/LICENSE

    modification, are permitted provided that the following conditions are
    met:
    
       * Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
       * Redistributions in binary form must reproduce the above
    copyright notice, this list of conditions and the following disclaimer
    in the documentation and/or other materials provided with the
    distribution.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 30 19:13:15 UTC 2021
    - 16.3K bytes
    - Viewed (0)
  6. src/math/big/natdiv.go

    		}
    
    		// ujn ≤ vn1, or else q̂ would be more than one digit.
    		// For ujn == vn1, we set q̂ to the max digit M above.
    		// Otherwise, we compute the 2-by-1 guess.
    		if ujn != vn1 {
    			var rhat Word
    			qhat, rhat = divWW(ujn, u[j+n-1], vn1, rec)
    
    			// Refine q̂ to a 3-by-2 guess. See “Refining Guesses” above.
    			vn2 := v[n-2]
    			x1, x2 := mulWW(qhat, vn2)
    			ujn2 := u[j+n-2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/saved_model/internal/testdata/BUILD

            "//tensorflow/python/ops:variables",
            "//tensorflow/python/ops:while_loop",
            "//tensorflow/python/saved_model",
            "@absl_py//absl:app",
        ],
    )
    
    # Files generated by the binary above.
    filegroup(
        name = "saved_models",
        srcs = glob([
            "SimpleWhileLoop/**",
            "UninitializedVariable/**",
        ]),
        visibility = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/templates/NOTES.txt

        "meshConfig.defaultConfig.tracing.stackdriver.maxNumberOfMessageEvents" "Istio supported tracers"
    }}
    {{- range $dep, $replace := $deps }}
    {{- /* Complex logic to turn the string above into a null-safe traversal like ((.Values.global).certificates */}}
    {{- $res := tpl (print "{{" (repeat (split "." $dep | len) "(")  ".Values." (replace "." ")." $dep) ")}}") $}}
    {{- if not (eq $res "")}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/testdata/string_test.go

    	return _Accuracy_name[_Accuracy_index[i]:_Accuracy_index[i+1]]
    }
    
    func testSmallIndexType(t *testing.T) {
    	tests := []struct {
    		i    int
    		want string
    	}{
    		{0, "Below"},
    		{1, "Exact"},
    		{2, "Above"},
    	}
    
    	for i, test := range tests {
    		if got := testSmallIndexType_ssa(test.i); got != test.want {
    			t.Errorf("#%d got %s wanted %s", i, got, test.want)
    		}
    	}
    }
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 4.5K bytes
    - Viewed (0)
  10. pkg/api/service/warnings.go

    		return []string{fmt.Sprintf("%s: IP address was accepted, but will be invalid in a future Kubernetes release: %v", fieldPath, err)}
    	}
    	// A Recommendation for IPv6 Address Text Representation
    	//
    	// "All of the above examples represent the same IPv6 address.  This
    	// flexibility has caused many problems for operators, systems
    	// engineers, and customers.
    	// ..."
    	// https://datatracker.ietf.org/doc/rfc5952/
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 26 22:57:57 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top