Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 855 for SELF (0.05 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilder.java

      protected B usingGenerator(G subjectGenerator) {
        this.subjectGenerator = subjectGenerator;
        return self();
      }
    
      public G getSubjectGenerator() {
        return subjectGenerator;
      }
    
      @CanIgnoreReturnValue
      public B withSetUp(Runnable setUp) {
        this.setUp = setUp;
        return self();
      }
    
      public Runnable getSetUp() {
        return setUp;
      }
    
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/pywrap_function_lib.pyi

      def save_exported_model(
          self,
          dst_saved_model_path: str,
          exported_model_serialized: bytes,
          src_saved_model_path: str,
          tags: set[str],
          serialized_signature_def_map: dict[str, bytes],
      ) -> Optional[bool]: ...
      # LINT.ThenChange()
    
      # LINT.IfChange(run_calibration)
      def run_calibration(
          self,
          saved_model_path: str,
          signature_keys: list[str],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:33:29 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. tests/test_computed_fields.py

        from pydantic import BaseModel, computed_field
    
        class Rectangle(BaseModel):
            width: int
            length: int
    
            @computed_field
            @property
            def area(self) -> int:
                return self.width * self.length
    
        @app.get("/")
        def read_root() -> Rectangle:
            return Rectangle(width=3, length=4)
    
        client = TestClient(app)
        return client
    
    
    @needs_pydanticv2
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 04 20:47:07 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencyMetadata.java

    /**
     * Describes a metadata about a dependency - direct dependency or dependency constraint - declared in a resolved component's metadata.
     *
     * @param <SELF> type extending this interface
     * @since 4.4
     */
    public interface DependencyMetadata<SELF extends DependencyMetadata> {
    
        /**
         * Returns the group of the module that is targeted by this dependency or dependency constraint.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 16 13:58:18 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  5. test/escape_param.go

    	sink = p
    }
    
    func paramArraySelfAssign(p *PairOfPairs) { // ERROR "p does not escape"
    	p.pairs[0] = p.pairs[1] // ERROR "ignoring self-assignment in p.pairs\[0\] = p.pairs\[1\]"
    }
    
    func paramArraySelfAssignUnsafeIndex(p *PairOfPairs) { // ERROR "leaking param content: p"
    	// Function call inside index disables self-assignment case to trigger.
    	p.pairs[zero()] = p.pairs[1]
    	p.pairs[zero()+1] = p.pairs[1]
    }
    
    type PairOfPairs struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 26 23:50:32 UTC 2021
    - 8.9K bytes
    - Viewed (0)
  6. pkg/apis/apps/fuzzer/fuzzer.go

    			}
    		},
    		func(j *apps.DeploymentSpec, c fuzz.Continue) {
    			c.FuzzNoCustom(j) // fuzz self without calling this function again
    			rhl := int32(c.Rand.Int31())
    			pds := int32(c.Rand.Int31())
    			j.RevisionHistoryLimit = &rhl
    			j.ProgressDeadlineSeconds = &pds
    		},
    		func(j *apps.DeploymentStrategy, c fuzz.Continue) {
    			c.FuzzNoCustom(j) // fuzz self without calling this function again
    			// Ensure that strategyType is one of valid values.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/example.com_retract_self_prerelease_v1.9.1-pre.txt

    Module example.com/retract/self/prerelease is a module that retracts its own
    latest version and all other release version.
    
    A pre-release version higher than the highest release version is still
    available, and that should be matched by @latest.
    
    -- .mod --
    module example.com/retract/self/prerelease
    
    go 1.15
    
    -- .info --
    {"Version":"v1.9.1-pre"}
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 369 bytes
    - Viewed (0)
  8. security/pkg/pki/ca/ca.go

    	// Config for creating self-signed root cert rotator.
    	RotatorConfig *SelfSignedCARootCertRotatorConfig
    
    	// OnRootCertUpdate is the cb which can only be called by self-signed root cert rotator
    	OnRootCertUpdate func() error
    }
    
    type RootCertUpdateFunc func() error
    
    // NewSelfSignedIstioCAOptions returns a new IstioCAOptions instance using self-signed certificate.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/structured_input.py

      @tf.function(input_signature=[
          tf.TensorSpec([1], tf.float32),
          tf.TensorSpec([2], tf.float32)
      ])
      def f0000_function_arity(self, x, y):
        return
    
      # Check index paths for lists.
      #
      # CHECK:      func {{@[a-zA-Z_0-9]+}}(
      # CHECK-SAME:   %arg0: tensor<f32> {tf._user_specified_name = "l", tf_saved_model.index_path = [0, 0]},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  10. docs_src/sql_databases_peewee/sql_app/schemas.py

    from typing import Any, List, Union
    
    import peewee
    from pydantic import BaseModel
    from pydantic.utils import GetterDict
    
    
    class PeeweeGetterDict(GetterDict):
        def get(self, key: Any, default: Any = None):
            res = getattr(self._obj, key, default)
            if isinstance(res, peewee.ModelSelect):
                return list(res)
            return res
    
    
    class ItemBase(BaseModel):
        title: str
        description: Union[str, None] = None
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 14 11:59:59 UTC 2022
    - 868 bytes
    - Viewed (0)
Back to top