Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 920 for involve (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/net/http/servemux121.go

    // The behavior is controlled by a GODEBUG setting.
    // Most of this code is derived from commit 08e35cc334.
    // Changes are minimal: aside from the different receiver type,
    // they mostly involve renaming functions, usually by unexporting them.
    
    // servemux121.go exists solely to provide a snapshot of
    // the pre-Go 1.22 ServeMux implementation for backwards compatibility.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:40:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/AbstractContainerTester.java

          list.add(e);
        }
        return Collections.unmodifiableList(list);
      }
    
      /**
       * @return a suitable location for a null element, to use when initializing containers for tests
       *     that involve a null element being present.
       */
      protected int getNullLocation() {
        return getNumElements() / 2;
      }
    
      protected MinimalCollection<E> createDisjointCollection() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. hack/verify-prometheus-imports.sh

      ./test/integration/apiserver/flowcontrol/concurrency_test.go
      ./test/integration/apiserver/flowcontrol/concurrency_util_test.go
      ./test/integration/metrics/metrics_test.go
    )
    
    # Go imports always involve a double quoted string of the package path
    # https://golang.org/ref/spec#Import_declarations
    #
    # If you *really* need a string literal that looks like "github.com/prometheus/.*"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 04:03:51 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top