Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 284 for replaced (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. tensorflow/compiler/mlir/quantization/tensorflow/cc/convert_asset_args.cc

    using ::mlir::tf_saved_model::LookupBoundInputOfType;
    using ::tensorflow::AssetFileDef;
    
    // Given argument attributes `arg_attrs`, returns a new set of argument
    // attributes where the "tf_saved_model.bound_input" attribute has been replaced
    // with the "tf_saved_model.index_path" attribute. `index_path` is the element
    // of the index path attribute.
    SmallVector<NamedAttribute> ReplaceBoundInputAttrWithIndexPathAttr(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/freeze_global_tensors.cc

          for (Operation *user : val.getUsers()) {
            if (auto read_op = llvm::dyn_cast<TF::ReadVariableOp>(user)) {
              // Collect all read variable ops so that all its uses can be replaced
              // with the tf.constant corresponding to the global tensor op.
              read_variable_ops_to_erase.push_back(read_op);
            } else {
              llvm::BitVector &bvector = remove_operands[user];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. 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)
  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. pilot/cmd/pilot-agent/config/config.go

    //
    // Merging is done by replacement. Any fields present in the overlay will replace those existing fields, while
    // untouched fields will remain untouched. This means lists will be replaced, not appended to, for example.
    func getMeshConfig(fileOverride, annotationOverride, proxyConfigEnv string) (*meshconfig.MeshConfig, error) {
    	mc := mesh.DefaultMeshConfig()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. src/log/slog/value_test.go

    	} {
    		v := AnyValue(want)
    		got := v.Any()
    		if !reflect.DeepEqual(got, want) {
    			t.Errorf("got %v, want %v", got, want)
    		}
    	}
    }
    
    func TestLogValue(t *testing.T) {
    	want := "replaced"
    	r := &replace{StringValue(want)}
    	v := AnyValue(r)
    	if g, w := v.Kind(), KindLogValuer; g != w {
    		t.Errorf("got %s, want %s", g, w)
    	}
    	got := v.LogValuer().LogValue().Any()
    	if got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. internal/config/scanner/scanner.go

    	EnvExcessVersions = "MINIO_SCANNER_ALERT_EXCESS_VERSIONS"
    
    	ExcessFolders    = "alert_excess_folders"
    	EnvExcessFolders = "MINIO_SCANNER_ALERT_EXCESS_FOLDERS"
    
    	// All below are deprecated in October 2022 and
    	// replaced them with a single speed parameter
    	Delay            = "delay"
    	MaxWait          = "max_wait"
    	Cycle            = "cycle"
    	EnvDelay         = "MINIO_SCANNER_DELAY"
    	EnvCycle         = "MINIO_SCANNER_CYCLE"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top