Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 64 for counterparts (0.4 sec)

  1. android/guava/src/com/google/common/base/Optional.java

       * {@link #or(Object)} or {@link #orNull} instead.
       *
       * <p><b>Comparison to {@code java.util.Optional}:</b> when the value is absent, this method
       * throws {@link IllegalStateException}, whereas the {@code java.util} counterpart throws {@link
       * java.util.NoSuchElementException NoSuchElementException}.
       *
       * @throws IllegalStateException if the instance is absent ({@link #isPresent} returns {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/LocalFileDependencyBackedArtifactSetCodec.kt

                filter,
                selector,
                artifactTypeRegistry,
                calculatedValueContainerFactory,
                allowNoMatchingVariants
            )
        }
    }
    
    
    // Deserialized counterpart of DefaultLocalFileDependencyBackedArtifactSet.
    // Stores less state than the original, since we perform selection for each possible extension at serialization time
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Optional.java

       * {@link #or(Object)} or {@link #orNull} instead.
       *
       * <p><b>Comparison to {@code java.util.Optional}:</b> when the value is absent, this method
       * throws {@link IllegalStateException}, whereas the {@code java.util} counterpart throws {@link
       * java.util.NoSuchElementException NoSuchElementException}.
       *
       * @throws IllegalStateException if the instance is absent ({@link #isPresent} returns {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

                // Likewise, the file to compile may be contained in a "platform" multiplatform module, where the `actual` declaration is
                // referenced in the symbol table automatically, but not its `expect` counterpart, because it isn't contained in the files to
                // compile. `shouldReferenceUndiscoveredExpectSymbols` references such `expect` symbols in the symbol table so that they can
                // subsequently be stubbed.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 08:42:45 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  5. src/go/types/generate_test.go

    const (
    	srcDir = "/src/cmd/compile/internal/types2/"
    	dstDir = "/src/go/types/"
    )
    
    // TestGenerate verifies that generated files in go/types match their types2
    // counterpart. If -write is set, this test actually writes the expected
    // content to go/types; otherwise, it just compares with the existing content.
    func TestGenerate(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/cgroup_manager_linux.go

    	// It should take a libcontainerconfigs.Cgroup.Path field (rather than Name and Parent)
    	// and split it appropriately, using essentially the logic below.
    	// This was done for cgroupfs in opencontainers/runc#497 but a counterpart
    	// for systemd was never introduced.
    	dir, base := path.Split(in.Name.ToSystemd())
    	if dir == "/" {
    		dir = "-.slice"
    	} else {
    		dir = path.Base(dir)
    	}
    	config.Parent = dir
    	config.Name = base
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  7. docs/en/docs/alternatives.md

    The way you use it is very simple. For example, to do a `GET` request, you would write:
    
    ```Python
    response = requests.get("http://example.com/some/url")
    ```
    
    The FastAPI counterpart API *path operation* could look like:
    
    ```Python hl_lines="1"
    @app.get("/some/url")
    def read_url():
        return {"message": "Hello World"}
    ```
    
    See the similarities in `requests.get(...)` and `@app.get(...)`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

      StringAttr padding;
      IntegerAttr stride_height;
      IntegerAttr stride_width;
    };
    
    // Templated class for declaring a converter from some TensorFlow convolution
    // op into its counterpart in TensorFlow Lite.
    //
    // The `ConcreteType` deriving from this template must provide the following
    // method for constructing TensorFlow Lite op:
    //
    //   TFL::[op] createTFLOp(ConvertTFConvOpMatchState *state,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    
    [[migmvn:custom_plugins]]
    == Dealing with uncommon and custom plugins
    
    You may come across Maven plugins that have no counterpart in Gradle, particularly if you or someone in your organisation has written a custom plugin.
    Such cases rely on you understanding how Gradle (and potentially Maven) works, because you will usually have to write your own plugin.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    link:{javadocPath}/org/gradle/StartParameter.html#setBuildFile-java.io.File-[setBuildFile(File)]
    and
    link:{javadocPath}/org/gradle/StartParameter.html#setSettingsFile-java.io.File-[setSettingsFile(File)]
    as well as the counterpart getters
    link:{javadocPath}/org/gradle/StartParameter.html#getBuildFile--[getBuildFile()]
    and
    link:{javadocPath}/org/gradle/StartParameter.html#getSettingsFile--[getSettingsFile()]
    have been deprecated.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top