Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 171 for a$ (0.07 sec)

  1. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Binding.
    func (in *Binding) DeepCopy() *Binding {
    	if in == nil {
    		return nil
    	}
    	out := new(Binding)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *Binding) DeepCopyObject() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let description = [{
          Performs a reordering of ops so that
            (a) ops of the same dialect are next to each other
            (b) order within a dialect is preserved
          .
          For example, this would transform
            %a = "x.f"()
            %b = "y.f"(%a)
            %c = "x.f"(%a)
          to
            %a = "x.f"()
            %c = "x.f"(%a)
            %b = "y.f"(%a)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. samples/addons/grafana.yaml

    platform</a> that provides a uniform way to <a href=\"https://istio.io/docs/concepts/security/\" target=\"_blank\">secure</a>,\n    <a href=\"https://istio.io/docs/concepts/traffic-management/\" target=\"_blank\">connect</a>, and \n    <a href=\"https://istio.io/docs/concepts/observability/\" target=\"_blank\">monitor</a> microservices.\n    <br>\n    Need help? <a href=\"https://istio.io/get-involved/\" target=\"_blank\">Join the Istio community</a>.\n  </div>\n</div>","mode":"html"},"pluginVersion...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  4. fastapi/applications.py

                    If the servers `list` is not provided, or is an empty `list`, the
                    default value would be a `dict` with a `url` value of `/`.
    
                    Each item in the `list` is a `dict` containing:
    
                    * `url`: A URL to the target host. This URL supports Server Variables
                    and MAY be relative, to indicate that the host location is relative
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm6.go

    		a.Reg += REG_AL - REG_AX
    		*t = 0
    	}
    }
    
    func unbytereg(a *obj.Addr, t *uint8) {
    	if a.Type == obj.TYPE_REG && a.Index == REG_NONE && (REG_AL <= a.Reg && a.Reg <= REG_R15B) {
    		a.Reg += REG_AX - REG_AL
    		*t = 0
    	}
    }
    
    const (
    	movLit uint8 = iota // Like Zlit
    	movRegMem
    	movMemReg
    	movRegMem2op
    	movMemReg2op
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. src/reflect/all_test.go

    	{V(int('a')), V(string("a"))},
    	{V(int8('a')), V(string("a"))},
    	{V(int16('a')), V(string("a"))},
    	{V(int32('a')), V(string("a"))},
    	{V(int64('a')), V(string("a"))},
    	{V(uint('a')), V(string("a"))},
    	{V(uint8('a')), V(string("a"))},
    	{V(uint16('a')), V(string("a"))},
    	{V(uint32('a')), V(string("a"))},
    	{V(uint64('a')), V(string("a"))},
    	{V(uintptr('a')), V(string("a"))},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

      // CHECK-LABEL: func @parallel_execute_with_input_with_sharding_configurations
      // CHECK-SAME: (%[[ARG_0:[a-z0-9]*]]: tensor<8xi32>, %[[ARG_1:[a-z0-9]*]]: tensor<8xi32>, %[[ARG_2:[a-z0-9]*]]: tensor<*xi1>, %[[ARG_3:[a-z0-9]*]]: tensor<*xi1>, %[[ARG_4:[a-z0-9]*]]: tensor<*xi32>, %[[ARG_5:[a-z0-9]*]]: tensor<*xi32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/CallTest.kt

        latch.await()
        // There's some flakiness when triggering a GC for objects in a separate thread. Adding a
        // small delay appears to ensure the objects will get GC'd.
        Thread.sleep(200)
        awaitGarbageCollection()
        val message = testLogHandler.take()
        assertThat(message).contains(
          "A connection to ${server.url("/")} was leaked. Did you forget to close a response body?",
        )
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/optimize.cc

    }
    
    // Returns whether the given type `a` is broadcast-compatible with `b`.
    bool IsBroadcastableElementsAttrAndType(Type a, Type b) {
      return OpTrait::util::getBroadcastedType(a, b) != Type();
    }
    
    // Returns whether the resultant type of any broadcastable operation with
    // operands `a` and `b` matches `expected_output`. Returns false if `a` is not
    // broadcast-compatible with `b`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/asm7.go

    }
    
    // sequenceOfOnes tests whether a constant is a sequence of ones in binary, with leading and trailing zeros.
    func sequenceOfOnes(x uint64) bool {
    	y := x & -x // lowest set bit of x. x is good iff x+y is a power of 2
    	y += x
    	return (y-1)&y == 0
    }
    
    // bitconEncode returns the encoding of a bitcon used in logical instructions
    // x is known to be a bitcon
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top