Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 132 for convlit (0.16 sec)

  1. common/scripts/metallb-native.yaml

              be optionally associated with a BGP session.
            properties:
              apiVersion:
                description: 'APIVersion defines the versioned schema of this representation
                  of an object. Servers should convert recognized schemas to the latest
                  internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
                type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

      "  return true;"
      "})">, "all users are AddOp and can fuse with "#op_to_fuse_with#"">;
    
    // TODO(b/294385379): This pattern only appears when we convert
    // from shlo due to differences in broadcasting behavior
    def UndoBroadcastFullyConnectedBiasAdd : Pat<
      (TFL_AddOp $lhs, (Arith_ConstantOp:$const_value $bias), TFL_AF_None),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  3. src/go/types/expr.go

    			return true
    		}
    		// A boolean type can only convert to another boolean type.
    		if allBoolean(x.typ) != allBoolean(y.typ) {
    			return false
    		}
    		// A string type can only convert to another string type.
    		if allString(x.typ) != allString(y.typ) {
    			return false
    		}
    		// Untyped nil can only convert to a type that has a nil.
    		if x.isNil() {
    			return hasNil(y.typ)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  4. pkg/controller/history/controller_history_test.go

    		},
    		{
    			name:     "create doesn't conflict when parents differ",
    			parent:   &ss2.ObjectMeta,
    			revision: ss2Rev1,
    			existing: []struct {
    				parent   metav1.Object
    				revision *apps.ControllerRevision
    			}{
    				{
    					parent:   ss1,
    					revision: ss1Rev1,
    				},
    			},
    
    			rename: false,
    		},
    		{
    			name:     "create renames on conflict",
    			parent:   &ss1.ObjectMeta,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

                finishVisitingMethod(methodVisitor);
                return;
            }
    
            // Adds a void $propName(Closure<?> cl) method that throws MME, to avoid attempts to convert closure to something else
            MethodVisitor methodVisitor = declareMethod(visitor, property.getName(), Type.getMethodDescriptor(Type.VOID_TYPE, CLOSURE_TYPE), null);
            putThisOnStack(methodVisitor);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/expr.go

    			return true
    		}
    		// A boolean type can only convert to another boolean type.
    		if allBoolean(x.typ) != allBoolean(y.typ) {
    			return false
    		}
    		// A string type can only convert to another string type.
    		if allString(x.typ) != allString(y.typ) {
    			return false
    		}
    		// Untyped nil can only convert to a type that has a nil.
    		if x.isNil() {
    			return hasNil(y.typ)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  7. hack/local-up-cluster.sh

    function parse_cpumanager_policy_options {
      echo "cpuManagerPolicyOptions:"
      # Convert from foo=true,bar=false to
      #   foo: "true"
      #   bar: "false"
      for option in $(echo "$1" | tr ',' ' '); do
        echo "${option}" | ${SED} -e 's/\(.*\)=\(.*\)/  \1: "\2"/'
      done
    }
    
    function parse_feature_gates {
      echo "featureGates:"
      # Convert from foo=true,bar=false to
      #   foo: true
      #   bar: false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    // All fields are required unless specified.
    //
    // The intended use of this type is embedding within a Kind specific
    // RESTStorage implementation. This type provides CRUD semantics on a Kubelike
    // resource, handling details like conflict detection with ResourceVersion and
    // semantics. The RESTCreateStrategy, RESTUpdateStrategy, and
    // RESTDeleteStrategy are generic across all backends, and encapsulate logic
    // specific to the API.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                module('kt') alignsTo('2.9.4.1') byPublishedPlatform()
    
                doesNotGetPlatform("org", "platform", "2.7.9") // because of conflict resolution
                doesNotGetPlatform("org", "platform", "2.9.0") // because of conflict resolution
            }
            run ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_test.go

    		sidecar          *config.Config
    		expectedListener []int
    	}{
    		{
    			name:             "service port conflict with proxy static listener",
    			services:         servicesConflictWithStaticListener,
    			sidecar:          nil,
    			expectedListener: []int{15090, 8080},
    		},
    		{
    			name:             "service port conflict with proxy virtual listener",
    			services:         servicesConflictWithVirtualListener,
    			sidecar:          nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top