Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 65 for Replayed (0.19 sec)

  1. pkg/config/security/security.go

    	case hasPrefix(key, attrExperimental):
    		return validateMapKey(key)
    	case isEqual(key, attrDestNamespace):
    		return fmt.Errorf("attribute %s is replaced by the metadata.namespace", key)
    	case hasPrefix(key, attrDestLabel):
    		return fmt.Errorf("attribute %s is replaced by the workload selector", key)
    	case isEqual(key, attrDestName, attrDestUser):
    		return fmt.Errorf("deprecated attribute %s: only supported in v1alpha1", key)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:43:34 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/common/deployment/external.go

    	"istio.io/istio/pkg/test/util/file"
    )
    
    const (
    	ExternalSvc      = "external"
    	ExternalHostname = "fake.external.com"
    )
    
    type External struct {
    	// Namespace where external echo app will be deployed
    	Namespace namespace.Instance
    
    	// All external echo instances with no sidecar injected
    	All echo.Instances
    }
    
    func (e External) Build(t resource.Context, b deployment.Builder) deployment.Builder {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ModuleComponentResolveMetadata.java

    /**
     * The meta-data for a component that is resolved from a module in a binary repository.
     *
     * <p>Implementations of this type should be immutable and thread safe.</p>
     *
     * This type is being replaced by several other interfaces. Try to avoid this interface.
     * @see ComponentGraphResolveMetadata
     * @see ModuleComponentGraphResolveMetadata
     * @see ComponentArtifactResolveMetadata
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. src/sync/once.go

    	// call f, and the second would return immediately, without
    	// waiting for the first's call to f to complete.
    	// This is why the slow path falls back to a mutex, and why
    	// the o.done.Store must be delayed until after f returns.
    
    	if o.done.Load() == 0 {
    		// Outlined slow-path to allow inlining of the fast-path.
    		o.doSlow(f)
    	}
    }
    
    func (o *Once) doSlow(f func()) {
    	o.m.Lock()
    	defer o.m.Unlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r33/BuildActionCompositeBuildCrossVersionSpec.groovy

     * there is a class-level lower bound for both versions.
     *
     * In addition, in version 6.6 the deprecated {@code DependencySubstitutions#with(ComponentSelector)} method
     * was removed, to be replaced by {@code #using(ComponentSelector)} so there are 2 versions of tests
     * present using either of those methods - pre and post Gradle 6.6.  And when the TAPI or Gradle versions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. src/runtime/pprof/label.go

    	if labels == nil {
    		return labelMap(nil)
    	}
    	return *labels
    }
    
    // labelMap is the representation of the label set held in the context type.
    // This is an initial implementation, but it will be replaced with something
    // that admits incremental immutable modification more efficiently.
    type labelMap map[string]string
    
    // String satisfies Stringer and returns key, value pairs in a consistent
    // order.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/projectresult/ResolvedLocalComponentsResultGraphVisitor.java

                // This check is here for historical reasons, as removing it would be a breaking change.
                // We should just leave this here, since this observation mechanism is being replaced anyway.
                if (projectComponentId.getBuild().equals(thisBuild)) {
                    resolvedProjectConfigurations.add(new ResolvedProjectConfiguration(projectComponentId.getIdentityPath(), node.getMetadata().getName()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultConflictHandler.java

                    String reason = replacement.getReason();
                    ComponentSelectionDescriptorInternal moduleReplacement = ComponentSelectionReasons.SELECTED_BY_RULE.withDescription(Describables.of(identifier, "replaced with", replacement.getTarget()));
                    if (reason != null) {
                        moduleReplacement = moduleReplacement.withDescription(Describables.of(reason));
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. testing/soak/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadComplexProjectSoakTest.groovy

            when:
            result = executer
                    .withTasks("compileJava")
                    .run()
    
            then:
            !result.plainTextOutput.matches("(?s).*The existing installation will be replaced by the new download.*")
        }
    
        @Requires(IntegTestPreconditions.DifferentJdksFromMultipleVendors)
        def "multiple subprojects with different toolchain definitions"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/CategoryFilter.java

                sb.append("NOT (");
                sb.append(join(exclusions, " OR "));
                sb.append(")");
            }
    
            return sb.toString();
        }
    
        // Can be replaced with String.join when workers are updated to run in JDK 8.
        private static String join(Set<String> strings, String delimiter) {
            StringBuilder result = new StringBuilder();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top