Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,037 for involve (0.36 sec)

  1. guava-gwt/src-super/com/google/common/escape/super/com/google/common/escape/Platform.java

        // ThreadLocal is not available to GWT, so we always reuse the same
        // instance.  It is always safe to return the same instance because
        // javascript is single-threaded, and only used by blocks that doesn't
        // involve async callbacks.
        return CHAR_BUFFER;
      }
    
      private Platform() {}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  2. test/fixedbugs/issue4909b.go

    }
    
    func writeDot(ns ...int) {
    	for _, root := range []string{"t", "p"} {
    		fmt.Printf("const _ = unsafe.Offsetof(%s", root)
    		for _, n := range ns {
    			fmt.Printf(".T%d", n)
    		}
    		// Does it involve an indirection?
    		nlast := ns[len(ns)-1]
    		nprev := 1
    		if len(ns) > 1 {
    			nprev = ns[len(ns)-2]
    		}
    		isIndirect := false
    		for n := nlast / 2; n > nprev; n /= 2 {
    			if n%2 == 1 {
    				isIndirect = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 19 06:26:35 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-jvm-test-fixtures/src/integTest/groovy/org/gradle/java/fixtures/KotlinTestFixturesIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.versions.KotlinGradlePluginVersions
    import spock.lang.Issue
    
    /**
     * Integration tests for the `java-test-fixtures` plugin that involve `kotlin` projects.
     */
    class KotlinTestFixturesIntegrationTest extends AbstractTestFixturesIntegrationTest {
        /**
         * Ensure we make an exception for test fixtures when checking for redundant
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 13 11:38:02 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/mlir_import_options.h

      // the `RemoveVariablesInSessionInitializerPass` pass, which runs otherwise,
      // may unexpectedly also remove the initialization patterns for non-variable
      // resources (like hash tables) if they involve variables. Such a case is
      // illustrated in the test file
      // "../tests/tf_saved_model_remove_vars_in_session_initializer.mlir".
      // This defaults to `false` to avoid breaking existing uses.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 20 13:19:26 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/README.md

    As the SavedModel work progresses, it's likely to be of interest to find a
    shortcut between the Python `tf.Module` and the SavedModel MLIR representation
    that doesn't involve serializing a SavedModel to disk and reading it back.
    
    ## Potential improvements
    
    The test iteration cycle for these tests is very long (usually over a minute).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 02 03:37:19 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  6. security/pkg/nodeagent/caclient/credentials.go

    	"istio.io/istio/pkg/security"
    )
    
    // TokenProvider is a grpc PerRPCCredentials that can be used to attach a JWT token to each gRPC call.
    // TokenProvider can be used for XDS, which may involve token exchange through STS.
    type DefaultTokenProvider struct {
    	opts *security.Options
    }
    
    var _ credentials.PerRPCCredentials = &DefaultTokenProvider{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testfortran/fortran_test.go

    		if runtime.GOOS != "aix" {
    			cgoLDFlags += " -Wl,-rpath," + libDir
    		}
    		t.Logf("CGO_LDFLAGS=%s", cgoLDFlags)
    		os.Setenv("CGO_LDFLAGS", cgoLDFlags)
    
    	}
    
    	// Do a test build that doesn't involve Go FORTRAN support.
    	fcArgs := append([]string{"testdata/helloworld/helloworld.f90", "-o", "/dev/null"}, fcExtra...)
    	t.Logf("%s %s", fc, fcArgs)
    	if err := exec.Command(fc, fcArgs...).Run(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 01:29:16 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/reduce_type_precision.cc

    // This transformation pass reduces the precision of some tensor types by first
    // checking if all values within that tensor are within the range.
    // This pass is added to aid conversion of models that involve types not
    // available in TF such as INT4, and ideally should be removed in favor of
    // stronger type propagation.
    
    #include <cstdint>
    #include <memory>
    #include <utility>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. src/runtime/trace/trace.go

    // A task is a higher-level component that aids tracing of logical
    // operations such as an RPC request, an HTTP request, or an
    // interesting local operation which may require multiple goroutines
    // working together. Since tasks can involve multiple goroutines,
    // they are tracked via a [context.Context] object. [NewTask] creates
    // a new task and embeds it in the returned [context.Context] object.
    // Log messages and regions are attached to the task, if any, in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCall.kt

        /**
         * Whether this function call is an implicit invoke call on a value that has an `invoke` member function. See
         * https://kotlinlang.org/docs/operator-overloading.html#invoke-operator for more details.
         */
        public val isImplicitInvoke: Boolean by validityAsserted(isImplicitInvoke)
    }
    
    /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top