Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 207 for Applied (0.3 sec)

  1. src/cmd/compile/internal/ssa/rewrite.go

    				states = make(map[string]bool)
    			}
    			h := f.rewriteHash()
    			if _, ok := states[h]; ok {
    				// We've found a cycle.
    				// To diagnose it, set debug to 2 and start again,
    				// so that we'll print all rules applied until we complete another cycle.
    				// If debug is already >= 2, we've already done that, so it's time to crash.
    				if debug < 2 {
    					debug = 2
    					states = make(map[string]bool)
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    ====
    
    You'll get the same behavior as before except with one extra directory level in the destination, i.e., `toArchive/reports`.
    
    One thing to note is how the `include()` directive applies only to the `from()`, whereas the directive in the previous section applied to the whole task.
    These different <<sub:using_child_copy_specifications,levels of granularity>> in the copy specification allow you to handle most requirements that you will come across easily.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  3. tests/integration/security/authz_test.go

    									allow:       true,
    									updateLabel: true,
    								},
    							}
    
    							// Make sure the namespace-wide policy was applied to this workload.
    							for _, ns := range []namespace.Instance{apps.Ns1.Namespace, apps.Ns2.Namespace} {
    								cases = append(cases,
    									testCase{
    										path:  fmt.Sprintf("/policy-%s-all", ns.Prefix()),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    	// before PreBind, as if the some other PreBind plugin had failed.
    	unreserveBeforePreBind *result
    }
    
    // prepare contains changes for objects in the API server.
    // Those changes are applied before running the steps. This can
    // be used to simulate concurrent changes by some other entities
    // like a resource driver.
    type prepare struct {
    	filter     change
    	prescore   change
    	reserve    change
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            when:
            property.replace { it.map { someOtherValue() } }
    
            then:
            property.get() == someOtherValue()
        }
    
        def "replace is not applied to later property modifications"() {
            given:
            property.set(someValue())
    
            when:
            property.replace { it.map { m -> m.collectEntries { k, v -> [v, k] } } }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

      if (failed(ConvertFakeQuantOps(func, ctx, use_fake_quant_num_bits_))) {
        signalPassFailure();
        return;
      }
    
      // Load the generated pattern again, so new quantization pass-through
      // will be applied.
      TFL::populateWithGenerated(phase_2_patterns);
      // TODO(fengliuai): Implement similar rule in the QuantizePass if the constant
      // folding hook of tfl.transpose and tfl.reshape are implemented.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  7. .bazelrc

    #     release_cpu_macos:               Toolchain and CUDA options for MacOS CPU builds.
    #     release_cpu_windows:             Toolchain and CUDA options for Windows CPU builds.
    
    # Default build options. These are applied first and unconditionally.
    
    # For projects which use TensorFlow as part of a Bazel build process, putting
    # nothing in a bazelrc will default to a monolithic build. The following line
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/lib.go

    	// relocation processing; it handles relocations where r.Type is
    	// insufficient to describe the relocation (r.Variant !=
    	// sym.RV_NONE). Here "rel" is the relocation being applied, "sym"
    	// is the symbol containing the chunk of data to which the
    	// relocation applies, and "off" is the contents of the
    	// to-be-relocated data item (from sym.P). Return is an updated
    	// offset value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  9. cmd/batch-handlers.go

    			if !minioSrc {
    				// Check if metadata filter was requested and it is expected to have
    				// all user metadata or just storageClass. If its only storageClass
    				// List() already returns relevant information for filter to be applied.
    				if isMetadata && !isStorageClassOnly {
    					oi2, err := c.StatObject(ctx, r.Source.Bucket, obj.Key, miniogo.StatObjectOptions{})
    					if err == nil {
    						oi = toObjectInfo(r.Source.Bucket, obj.Key, oi2)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  10. src/time/format.go

    //
    // The example for Time.Format demonstrates the working of the layout string
    // in detail and is a good reference.
    //
    // Note that the [RFC822], [RFC850], and [RFC1123] formats should be applied
    // only to local times. Applying them to UTC times will use "UTC" as the
    // time zone abbreviation, while strictly speaking those RFCs require the
    // use of "GMT" in that case.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
Back to top