Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 247 for Replayed (0.66 sec)

  1. src/path/filepath/path.go

    // in path with a slash ('/') character. Multiple separators are
    // replaced by multiple slashes.
    func ToSlash(path string) string {
    	return filepathlite.ToSlash(path)
    }
    
    // FromSlash returns the result of replacing each slash ('/') character
    // in path with a separator character. Multiple slashes are replaced
    // by multiple separators.
    //
    // See also the Localize function, which converts a slash-separated path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/GroovyCodecs.kt

    }
    
    
    internal
    object ClosureCodec : Codec<Closure<*>> {
        override suspend fun WriteContext.encode(value: Closure<*>) {
            // Write the owning script for the closure
            // Discard the delegate, this will be replaced by the caller
            writeReference(findOwningScript(value))
            writeReference(value.thisObject)
            encodeBean(value.dehydrate())
        }
    
        override suspend fun ReadContext.decode(): Closure<*> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. tests/integration/ambient/cnirepair/main_test.go

    	// its doing something unique to that specific test.
    	apps = &EchoDeployments{}
    )
    
    type EchoDeployments struct {
    	// Namespace echo apps will be deployed
    	Namespace namespace.Instance
    	// Captured echo service
    	Captured echo.Instances
    	// Uncaptured echo Service
    	Uncaptured echo.Instances
    	// Sidecar echo services with sidecar
    	Sidecar echo.Instances
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 09 09:12:45 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch.go

    				// should not be set
    				if len(filteredSubMap) != 0 {
    					filteredMap[key] = filteredSubMap
    				}
    
    			case []interface{}, string, float64, bool, int64, nil:
    				// Lists are always replaced in Json, no need to check each entry in the list.
    				if !keepNull {
    					filteredMap[key] = val
    				}
    			default:
    				return nil, fmt.Errorf("unknown type: %v", reflect.TypeOf(typedVal))
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/CollectionUtils.java

            boolean replaced = false;
            int i = 0;
            for (E it : list) {
                if (filter.isSatisfiedBy(it)) {
                    list.set(i, transformer.transform(it));
                    replaced = true;
                }
                ++i;
            }
            return replaced;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintCheckerTest.kt

                        originalFileHash
                    )
                ),
                equalTo("file 'displayNameOf(inputFile)' has been removed")
            )
        }
    
        @Test
        fun `build input file is replaced by directory`() {
            val inputFile = File("input.txt")
            // all we care is that it is changed from the original one
            val newDirectoryHash = TestHashCodes.hashCodeFrom(2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			claim := state.claims[index]
    			// Deallocation makes more sense for claims with
    			// delayed allocation. Claims with immediate allocation
    			// would just get allocated again for a random node,
    			// which is unlikely to help the pod.
    			//
    			// Claims with builtin controller are handled like
    			// claims with delayed allocation.
    			if claim.Spec.AllocationMode == resourcev1alpha2.AllocationModeWaitForFirstConsumer ||
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top