Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 451 for scope_ (0.09 sec)

  1. testing/architecture-test/src/changes/archunit-store/injected-services-should-have-service-scope-applied.txt

    Anže Sodja <******@****.***> 1717576978 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/get.go

    		if err != nil {
    			scope.err(err, w, req)
    			return
    		}
    
    		result, err := getter(ctx, name, req)
    		if err != nil {
    			scope.err(err, w, req)
    			return
    		}
    
    		span.AddEvent("About to write a response")
    		defer span.AddEvent("Writing http response done")
    		transformResponseObject(ctx, scope, req, w, http.StatusOK, outputMediaType, result)
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:22:16 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorsClassPath.kt

    import org.gradle.internal.hash.Hasher
    import org.gradle.internal.hash.Hashing
    import org.gradle.internal.properties.InputBehavior.NON_INCREMENTAL
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    import org.gradle.internal.snapshot.ValueSnapshot
    import org.gradle.kotlin.dsl.cache.KotlinDslWorkspaceProvider
    import org.gradle.kotlin.dsl.concurrent.AsyncIOScopeFactory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_cluster_util_test.cc

        const Scope& scope, FunctionLibraryDefinition* flib_def = nullptr) {
      FunctionDefLibrary flib;
      FunctionLibraryDefinition flib_def_local(OpRegistry::Global(), flib);
      if (flib_def == nullptr) {
        flib_def = &flib_def_local;
      }
    
      std::unique_ptr<Graph> graph(new Graph(OpRegistry::Global()));
    
      TF_RETURN_IF_ERROR(scope.ToGraph(graph.get()));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

      // ref: https://github.com/google/cel-spec
      // The Rule is scoped to the location of the x-kubernetes-validations extension in the schema.
      // The `self` variable in the CEL expression is bound to the scoped value.
      // Example:
      // - Rule scoped to the root of a resource with a status subresource: {"rule": "self.status.actual <= self.spec.maxDesired"}
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/build_xla_ops_pass_test.cc

                                   result);
    }
    
    Node* MakeWrite(const Scope& scope, Output value_to_write, const string& id) {
      Output var_handle = ops::VarHandleOp(scope.WithOpName("Var_" + id), DT_FLOAT,
                                           TensorShape({}));
      ops::AssignVariableOp assign_op(scope.WithOpName("Assignee_" + id),
                                      var_handle, value_to_write);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. maven-core/pom.xml

          <scope>provided</scope>
        </dependency>
        <dependency>
          <groupId>org.eclipse.sisu</groupId>
          <artifactId>org.eclipse.sisu.plexus</artifactId>
          <scope>provided</scope>
        </dependency>
        <dependency>
          <groupId>org.eclipse.sisu</groupId>
          <artifactId>org.eclipse.sisu.inject</artifactId>
          <scope>provided</scope>
        </dependency>
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass_test.cc

      }
    
      IncreaseDynamismForAutoJitPass rewriter;
      TF_RETURN_IF_ERROR(rewriter.Run(options));
      *result = std::move(graph);
      return absl::OkStatus();
    }
    
    TEST(SliceToDynamicSliceRewriteTest, Basic) {
      Scope root = Scope::NewRootScope()
                       .ExitOnError()
                       .WithAssignedDevice(kDeviceName)
                       .WithXlaCluster("cluster_0");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/provider/ProviderFactory.java

    import org.gradle.api.file.FileContents;
    import org.gradle.api.file.RegularFile;
    import org.gradle.api.initialization.Settings;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    import org.gradle.process.ExecOutput;
    import org.gradle.process.ExecSpec;
    import org.gradle.process.JavaExecSpec;
    
    import java.util.Map;
    import java.util.concurrent.Callable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/configuration/internal/DefaultListenerBuildOperationDecoratorTest.groovy

    import org.gradle.internal.code.UserCodeSource
    import org.gradle.internal.event.DefaultListenerManager
    import org.gradle.internal.operations.TestBuildOperationRunner
    import org.gradle.internal.service.scopes.Scope
    import spock.lang.Specification
    
    class DefaultListenerBuildOperationDecoratorTest extends Specification {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top