Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 865 for findIn (0.27 sec)

  1. operator/pkg/translate/translate_common.go

    	enableNodeI, found, err := tpath.Find(valueSpec, util.ToYAMLPath(enabledPath))
    	if err != nil {
    		return false, false, fmt.Errorf("error finding component enablement path: %s in helm value.yaml tree", enabledPath)
    	}
    	if !found {
    		// Some components do not specify enablement should be treated as enabled if the root node in the component subtree exists.
    		_, found, err := tpath.Find(valueSpec, util.ToYAMLPath(valuePath))
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/generators/go122-fail-first-gen-first.go

    // license that can be found in the LICENSE file.
    
    // Regression test for #55160.
    //
    // The issue is that the parser reads ahead to the first batch of the
    // next generation to find generation boundaries, but if it finds an
    // error, it needs to delay handling that error until later. Previously
    // it would handle that error immediately and a totally valid generation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/maven/MavenScopeTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.maven
    
    import spock.lang.Specification
    
    class MavenScopeTest extends Specification {
    
        def "finds expected dependency"() {
            given:
            MavenDependency givenMavenDependency = new MavenDependency(groupId: 'org.gradle', artifactId: 'test', version: '1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. cni/pkg/repair/netns.go

    			// Unexpected... we will use it, but only if we find nothing without errors
    			log.Warnf("failed to read proc %v stats: %v", p.PID, err)
    			if best == "" {
    				best = ns
    			}
    			continue
    		}
    		// Get the oldest one.
    		if s.Starttime < oldest {
    			oldest = s.Starttime
    			best = ns
    		}
    	}
    	if best == "" {
    		return "", fmt.Errorf("failed to find network namespace")
    	}
    	return best, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 04:07:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/execution/WorkExecutionTracker.java

    import java.util.Optional;
    
    /**
     * Provides access to the work executing on the current thread.
     */
    @ServiceScope(Scope.Global.class)
    public interface WorkExecutionTracker {
    
        /**
         * Finds the task executing on the current thread, if any.
         */
        Optional<TaskInternal> getCurrentTask();
    
        /**
         * Checks if the current thread is executing a {@link org.gradle.api.artifacts.transform.TransformAction}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

      ];
    }
    
    def FoldConstantTransposePass : Pass<"stablehlo-fold-constant-transpose", "mlir::func::FuncOp"> {
      let summary = "Folds stablehlo.constant -> stablehlo.transpose patterns.";
      let description = [{
        Finds patterns where a `stablehlo.constant` is directly followed by a
        `stablehlo.transpose` and folds them into a single `stablehlo.constant`.
        This is considered an aggressive optimization, but it is useful to eliminate
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. docs/de/docs/tutorial/static-files.md

    Weitere Informationen hierzu finden Sie im [Handbuch für fortgeschrittene Benutzer](../advanced/index.md){.internal-link target=_blank}.
    
    ## Einzelheiten
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:14 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. hack/update-codegen.sh

        # The result file, in each pkg, of deep-copy generation.
        local output_file="${GENERATED_FILE_PREFIX}deepcopy.go"
    
        # Find all the directories that request deep-copy generation.
        if [[ "${DBG_CODEGEN}" == 1 ]]; then
            kube::log::status "DBG: finding all +k8s:deepcopy-gen tags"
        fi
        local tag_dirs=()
        kube::util::read-array tag_dirs < <( \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/AttributeMatchingArtifactVariantSelectorSpec.groovy

        def failureDescriberRegistry = DependencyManagementTestUtil.standardResolutionFailureDescriberRegistry()
        def failureProcessor = new ResolutionFailureHandler(failureDescriberRegistry)
    
        def 'direct match on variant means no finder interaction'() {
            given:
            def resolvedArtifactSet = Mock(ResolvedArtifactSet)
            def variants = [variant]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. docs/de/docs/deployment/concepts.md

    Einige wichtige Konzepte sind:
    
    * Sicherheit – HTTPS
    * Beim Hochfahren ausführen
    * Neustarts
    * Replikation (die Anzahl der laufenden Prozesse)
    * Arbeitsspeicher
    * Schritte vor dem Start
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:16:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top