Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 235 for replaced (0.18 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ModuleResolveState.java

                if (version.isSelected()) {
                    version.makeSelectable();
                }
            }
    
            selected = null;
            replaced = false;
        }
    
        /**
         * Overrides the component selection for this module, when this module has been replaced by another.
         */
        @Override
        public void replaceWith(ComponentState selected) {
            if (this.selected != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  2. cmd/storage-interface.go

    	GetDiskID() (string, error)
    
    	// Set a unique 'uuid' for this disk, only used when
    	// disk is replaced and formatted.
    	SetDiskID(id string)
    
    	// Returns healing information for a newly replaced disk,
    	// returns 'nil' once healing is complete or if the disk
    	// has never been replaced.
    	Healing() *healingTracker
    	DiskInfo(ctx context.Context, opts DiskInfoOptions) (info DiskInfo, err error)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. pilot/pkg/xds/deltatest.go

    	for _, v := range resp.Resources {
    		byName[v.Name] = v
    	}
    	res := model.Resources{}
    	for _, m := range message {
    		if deleted.Contains(m.Name) {
    			continue
    		}
    		if replaced := byName[m.Name]; replaced != nil {
    			res = append(res, replaced)
    			delete(byName, m.Name)
    			continue
    		}
    		res = append(res, m)
    	}
    	for _, v := range byName {
    		res = append(res, v)
    	}
    	return res
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredFileInputsIntegrationTest.groovy

            configurationCacheRunLenient()
    
            then:
            configurationCache.assertStateStored()
            problems.assertResultHasProblems(result) {
                // TODO when implemented, this assertion should be replaced with the commented one:
                inputs.expect(allOf(startsWith("Plugin class 'SneakyPluginA': file '${FileUtils.testFileName}'"), containsString(FileUtils.testFileName)))
                /*
                pluginClasses.forEach {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. 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)
  6. common/config/.golangci.yml

      # Can use regexp here: `generated.*`, regexp is applied on full path,
      # including the path prefix if one is set.
      # Default dirs are skipped independently of this option's value (see exclude-dirs-use-default).
      # "/" will be replaced by current OS file path separator to properly work on Windows.
      # Default: []
      exclude-dirs:
        - genfiles$
        - vendor$
      # Which files to exclude: they will be analyzed, but issues from them won't be reported.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.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

            ModuleReplacementsData.Replacement replacement = moduleReplacements.getReplacementFor(candidate.getId());
            ModuleIdentifier replacedBy = replacement == null ? null : replacement.getTarget();
            return potentialConflict(conflicts.newElement(candidate.getId(), candidate.getVersions(), replacedBy));
        }
    
        /**
         * Informs if there are any batched up conflicts.
         */
        @Override
        public boolean hasConflicts() {
    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. 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)
  10. 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)
Back to top