Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 855 for SELF (0.09 sec)

  1. manifests/charts/base/crds/crd-all.gen.yaml

                    - message: url must have schema one of [http, https, file, oci]
                      rule: 'isURL(self) ? (url(self).getScheme() in ['''', ''http'',
                        ''https'', ''oci'', ''file'']) : (isURL(''http://'' + self) &&
                        url(''http://'' +self).getScheme() in ['''', ''http'', ''https'',
                        ''oci'', ''file''])'
                  verificationKey:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/example.com_retract_self_prev_v1.9.0.txt

    Module example.com/retract/self/prev is a module that retracts its own
    latest version, as well as an earlier version.
    
    A previous unretracted release version, v1.1.0, is still available.
    
    -- .mod --
    module example.com/retract/self/prev
    
    go 1.15
    
    retract v1.0.0-bad // bad
    retract v1.9.0 // self
    
    -- .info --
    {"Version":"v1.9.0"}
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:12:37 UTC 2020
    - 351 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types_jsonschema.go

    	// are accessible via `self[mapKey]`, map containment can be checked via `mapKey in self` and all entries of the map
    	// are accessible via CEL macros and functions such as `self.all(...)`.
    	// If the Rule is scoped to an array, the elements of the array are accessible via `self[i]` and also by macros and
    	// functions.
    	// If the Rule is scoped to a scalar, `self` is bound to the scalar value.
    	// Examples:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:23:23 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/structured_output.py

      # CHECK-SAME:   tensor<1xf32> {tf_saved_model.index_path = []})
      # CHECK-SAME: attributes {{.*}} tf_saved_model.exported_names = ["f0000_single_return"]
      @tf.function(input_signature=[])
      def f0000_single_return(self):
        return tf.constant(1.0, shape=[1])
    
      # Check index paths for results with multiple return values.
      # Note that semantically in Python, multiple return values are equivalent
      # to returning a tuple/list.
      #
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  5. fastapi/_compat.py

            @property
            def alias(self) -> str:
                a = self.field_info.alias
                return a if a is not None else self.name
    
            @property
            def required(self) -> bool:
                return self.field_info.is_required()
    
            @property
            def default(self) -> Any:
                return self.get_default()
    
            @property
            def type_(self) -> Any:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  6. src/main/resources/crawler/transformer.xml

    		<postConstruct name="addFieldRule">
    			<arg>"title"</arg>
    			<arg>"//TITLE"</arg>
    			<arg>true</arg>
    		</postConstruct>
    		<postConstruct name="addFieldRule">
    			<arg>"important_content"</arg>
    			<arg>"//*[self::H1 or self::H2 or self::H3]"</arg>
    			<arg>true</arg>
    		</postConstruct>
    	</component>
    
    	<component name="fessFileTransformer" class="org.codelibs.fess.crawler.transformer.FessFileTransformer" instance="singleton">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jan 10 03:35:10 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  7. fastapi/applications.py

                ),
            ],
        ) -> None:
            self.debug = debug
            self.title = title
            self.summary = summary
            self.description = description
            self.version = version
            self.terms_of_service = terms_of_service
            self.contact = contact
            self.license_info = license_info
            self.openapi_url = openapi_url
            self.openapi_tags = openapi_tags
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/example.com_retract_self_all_v1.9.0.txt

    Module example.com/retract/self/prev is a module that retracts its own
    latest version.
    
    No unretracted versions are available.
    
    -- .mod --
    module example.com/retract/self/all
    
    go 1.15
    
    retract v1.9.0 // bad
    
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 241 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/exported_python_args.py

    class TestModule(tf.Module):
    
      @tf.function(input_signature=[tf.TensorSpec([], tf.float32)])
      def some_function(self, x):
        return self.callee(x)
    
      # CHECK: While importing SavedModel function 'callee': in input signature:
      # CHECK-SAME: Unhandled structured value kind {{.*}} at index path: <value>.1.foo
      @tf.function
      def callee(self, x, n={'foo': 42}):
        return x
    
    
    if __name__ == '__main__':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildIdentityIntegrationTest.groovy

                    def projectInOtherBuild = rootComponent.dependencies[0].selected
                    def self = rootComponent.dependencies[1].selected
                    assert rootComponent.id.build.currentBuild
                    assert self.id.build.currentBuild
                    assert self == rootComponent
                    assert !projectInOtherBuild.id.build.currentBuild
                }
            """
            buildC.buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top