Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 431 for Scalar (0.4 sec)

  1. docs/en/overrides/main.html

        </div>
        <div class="item">
          <a title="Scalar: Beautiful Open-Source API References from Swagger/OpenAPI files" style="display: block; position: relative;" href="https://github.com/scalar/scalar/?utm_source=fastapi&utm_medium=website&utm_campaign=top-banner" target="_blank">
            <span class="sponsor-badge">sponsor</span>
            <img class="sponsor-image" src="/img/sponsors/scalar-banner.svg" />
          </a>
        </div>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/internal/internal.go

    var parser *typed.Parser
    var schemaYAML = typed.YAMLObject(`types:
    - name: __untyped_atomic_
      scalar: untyped
      list:
        elementType:
          namedType: __untyped_atomic_
        elementRelationship: atomic
      map:
        elementType:
          namedType: __untyped_atomic_
        elementRelationship: atomic
    - name: __untyped_deduced_
      scalar: untyped
      list:
        elementType:
          namedType: __untyped_atomic_
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p256.go

    	})
    	return p256GeneratorTable
    }
    
    // ScalarBaseMult sets p = scalar * B, where B is the canonical generator, and
    // returns p.
    func (p *P256Point) ScalarBaseMult(scalar []byte) (*P256Point, error) {
    	if len(scalar) != p256ElementLength {
    		return nil, errors.New("invalid scalar length")
    	}
    	tables := p.generatorTable()
    
    	// This is also a scalar multiplication with a four-bit window like in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    	// be a scalar typed field of the child structure (no nesting is supported).
    	XListMapKeys []string
    
    	// x-kubernetes-list-type annotates a list to further describe its topology.
    	// This extension must only be used on lists and may have 3 possible values:
    	//
    	// 1) `atomic`: the list is treated as a single entity, like a scalar.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/ManagedTypeDslIntegrationTest.groovy

            }
        }
    }
    '''
    
            when:
            run "show"
    
            then:
            output.contains("barry lives in Melbourne")
        }
    
        def "can use convenience methods to configure property of scalar type"() {
            buildFile << '''
    @Managed interface Thing {
        int getNumber()
        void setNumber(int i)
        File getFile()
        void setFile(File f)
    }
    
    model {
        tasks {
            show(Task) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/modelRules/basicRuleSourcePlugin/groovy/build.gradle

      void setMaritalStatus(MaritalStatus status)
      MaritalStatus getMaritalStatus()
    // end::property-type-enum[]
    
    // tag::property-type-collection-scalar[]
       void setUserGroups(List<String> groups)
       List<String> getUserGroups()
    // end::property-type-collection-scalar[]
    
    
    // tag::managed-type-plugin-and-dsl[]
    // tag::managed-type-and-plugin[]
    // tag::managed-type[]
    }
    // end::managed-type[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/prunenulls_test.go

    		name     string
    		json     string
    		schema   *structuralschema.Structural
    		expected string
    	}{
    		{"empty", "null", nil, "null"},
    		{"scalar", "4", &structuralschema.Structural{
    			Generic: structuralschema.Generic{
    				Default: structuralschema.JSON{Object: "foo"},
    			},
    		}, "4"},
    		{"scalar array", "[1,null]", nil, "[1,null]"},
    		{"object array", `[{"a":null},{"b":null},{"c":null},{"d":null},{"e":null}]`, &structuralschema.Structural{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch_test.go

            - 2
            - 3
      - description: patch with different scalar type
        original:
          foo: 1
        modified:
          foo: true
        current:
          foo: 1
          bar: 2
        threeWay:
          foo: true
        result:
          foo: true
          bar: 2
      - description: patch from scalar to list
        original:
          foo: 0
        modified:
          foo:
          - 1
          - 2
        current:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ScalarTypesInManagedModelIntegrationTest.groovy

                        }
                    }
                }
    
                apply type: RulePlugin
            '''
    
            then:
            succeeds "check"
    
        }
    
        def "can view property with scalar type as ModelElement"() {
            given:
            buildScript '''
                @Managed
                interface PrimitiveTypes {
                    int getIntProp()
                    void setIntProp(int value)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 27.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/unfold_splat_constant_pass.cc

        if (mlir::isa<ComplexType>(element_type) ||
            mlir::isa<quant::QuantizedType>(element_type)) {
          return;
        }
        op_builder->setInsertionPoint(const_op);
        Value scalar = op_builder->create<mhlo::ConstantOp>(
            const_op->getLoc(),
            DenseElementsAttr::get(
                RankedTensorType::get(/*shape=*/{}, element_type),
                splat_elements_attr.getSplatValue<Attribute>()));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top