Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for placeholders (0.27 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

                        snapshot[it] != ConfigurationCacheFingerprint.SystemPropertiesPrefixedBy.IGNORED
                    }
                    val snapshotWithoutIgnored = snapshot.filterValues {
                        // remove placeholders of modified properties to only compare relevant values.
                        it != ConfigurationCacheFingerprint.SystemPropertiesPrefixedBy.IGNORED
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaSerializationIntegrationTest.groovy

        def "restores task fields whose value is Serializable and has writeReplace method"() {
            buildFile << """
                class Placeholder implements Serializable {
                    String value
    
                    private Object readResolve() {
                        return new OtherBean(prop: "[\$value]")
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

                    // If the key is not a string, it can only affect properties that were set by the build logic. There is
                    // no need to persist the removal, but the set value should not be persisted too. A placeholder value
                    // will keep the key mutated to avoid recording it as an input.
                    mutatedSystemProperties[key] = SystemPropertyIgnored
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprint.kt

            val prefix: String,
            val snapshot: Map<String, Any?>
        ) : ConfigurationCacheFingerprint() {
            companion object {
                /**
                 * The placeholder for system properties modified by the build logic at the time of
                 * reading. Such properties shouldn't be taken into account when comparing snapshots.
                 */
                val IGNORED: Any = Ignored.INSTANCE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. cluster/gce/windows/k8s-node-setup.psm1

      #
      # daschott noted on Slack: "L2bridge networks require an external vSwitch.
      # The first network ("External") with hardcoded values in the script is just
      # a placeholder to create an external vSwitch. This is purely for convenience
      # to be able to remove/modify the actual HNS network ("cbr0") or rejoin the
      # nodes without a network blip. Creating a vSwitch takes time, causes network
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// Create a watcher here to reduce memory allocations under lock,
    	// given that memory allocation may trigger GC and block the thread.
    	// Also note that emptyFunc is a placeholder, until we will be able
    	// to compute watcher.forget function (which has to happen under lock).
    	watcher := newCacheWatcher(
    		chanSize,
    		filterWithAttrsFunction(key, pred),
    		emptyFunc,
    		c.versioner,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        Res<TF_Float32Tensor, [{A 1D Tensor for the gradient with respect to offset.}]>:$offset_backprop,
        Res<TF_Float32Tensor, [{Unused placeholder to match the mean input in FusedBatchNorm.}]>:$reserve_space_3,
        Res<TF_Float32Tensor, [{Unused placeholder to match the variance input
    in FusedBatchNorm.}]>:$reserve_space_4
      );
    
      TF_DerivedOperandTypeAttr T = TF_DerivedOperandTypeAttr<0>;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  8. src/time/format.go

    			b = appendInt(b, zone%60, 2)
    		case stdFracSecond0, stdFracSecond9:
    			b = appendNano(b, t.Nanosecond(), std)
    		}
    	}
    	return b
    }
    
    var errBad = errors.New("bad value for field") // placeholder not passed to user
    
    // ParseError describes a problem parsing a time string.
    type ParseError struct {
    	Layout     string
    	Value      string
    	LayoutElem string
    	ValueElem  string
    	Message    string
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

            tensorflow::GetTypeFromTFTensorShape(output_shape, input_element_type),
            scalar_zero, unpack->getResults());
        // `lengths` is only useful for computing gradient. For now we just return
        // a placeholder tensor.
        rewriter.replaceOp(
            op, {concat.getResult(), CreateI64SplatConst(loc, &rewriter, {0}, 0)});
        return success();
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug.go

    	default:
    		panic("unexpected pointer size")
    	}
    
    }
    
    // setupLocList creates the initial portion of a location list for a
    // user variable. It emits the encoded start/end of the range and a
    // placeholder for the size. Return value is the new list plus the
    // slot in the list holding the size (to be updated later).
    func setupLocList(ctxt *obj.Link, f *Func, list []byte, st, en ID) ([]byte, int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top