Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 243 for Extract (0.2 sec)

  1. subprojects/core/src/main/java/org/gradle/api/services/internal/DefaultBuildServicesRegistry.java

            return doRegisterIfAbsent(name, implementationType, () -> {
                // TODO - extract some shared infrastructure to take care of parameter instantiation (eg strict vs lenient, which services are visible)
                P parameters = instantiateParametersOf(implementationType);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:45 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. pkg/serviceaccount/jwt.go

    	keys         []interface{}
    	validator    Validator
    	implicitAuds authenticator.Audiences
    }
    
    // Validator is called by the JWT token authenticator to apply domain specific
    // validation to a token and extract user information.
    type Validator interface {
    	// Validate validates a token and returns user information or an error.
    	// Validator can assume that the issuer and signature of a token are already
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsFixture.groovy

            def projectModels = projectScopedModels.groupBy { it.buildTreePath }
            def projectModelsShortNames = remapValues(projectModels) { it.shortModelName }
    
            // Do not extract left side into a variable to get power assert insights
            assert remapValues(projectModelsShortNames) { it.size() } == expectedProjectModelsCounts
    
            for (def modelExpectation in modelExpectations) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    	}
    	return numLabelUnits
    }
    
    type sampleValueFunc func([]int64) int64
    
    // sampleFormat returns a function to extract values out of a profile.Sample,
    // and the type/units of those values.
    func sampleFormat(p *profile.Profile, sampleIndex string, mean bool) (value, meanDiv sampleValueFunc, v *profile.ValueType, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/ingress/controller.go

    		}
    	}
    
    	if typ == gvk.VirtualService {
    		for _, obj := range ingressByHost {
    			out = append(out, *obj)
    		}
    	}
    
    	return out
    }
    
    // extractServicesByPortNameType extract services that are of port name type in the specified ingress resource.
    func extractServicesByPortNameType(ingress *knetworking.Ingress) sets.String {
    	services := sets.String{}
    	for _, rule := range ingress.Spec.Rules {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. fastapi/openapi/utils.py

                    status_code = str(route.status_code)
                else:
                    # It would probably make more sense for all response classes to have an
                    # explicit default status_code, and to extract it from them, instead of
                    # doing this inspection tricks, that would probably be in the future
                    # TODO: probably make status_code a default class attribute for all
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  7. operator/cmd/mesh/manifest-generate_test.go

    		}
    		f, err := os.Open("testdata/manifest-generate/data-snapshot.tar.gz")
    		if err != nil {
    			panic(fmt.Errorf("failed to read data snapshot: %v", err))
    		}
    		if err := extract(f, d); err != nil {
    			panic(fmt.Errorf("failed to extract data snapshot: %v", err))
    		}
    		return chartSourceType(filepath.Join(d, "manifests"))
    	}()
    	// Compiled in charts come from assets.gen.go
    	compiledInCharts chartSourceType = "COMPILED"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr3_multi_project_builds.adoc

    However, to build `app`, Gradle will also build `lib`.
    
    == Step 3. Understand Composite Builds
    A composite build is simply a build that includes other builds.
    
    Composite builds allow you to:
    
    - Extract your build logic from your project build (and re-use it among subprojects)
    - Combine builds that are usually developed independently (such as a plugin and an application)
    - Decompose a large build into smaller, more isolated chunks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_plugin.go

    // That string value is used in Detach() to extract driver name and volumeName.
    func (p *csiPlugin) GetVolumeName(spec *volume.Spec) (string, error) {
    	csi, err := getPVSourceFromSpec(spec)
    	if err != nil {
    		return "", errors.New(log("plugin.GetVolumeName failed to extract volume source from spec: %v", err))
    	}
    
    	// return driverName<separator>volumeHandle
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

        FunctionLibraryDefinition* flib_def,
        llvm::SmallDenseSet<FuncOp>& visited_functions,
        absl::flat_hash_set<Node*>* control_ret_nodes) {
      mlir::Block& block = function.front();
    
      // Extract input & output names if set.
      llvm::SmallVector<llvm::StringRef, 2> input_names;
      llvm::SmallVector<llvm::StringRef, 2> output_names;
      llvm::SmallVector<llvm::StringRef, 2> unique_output_names;
      auto dict_attr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
Back to top