Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 168 for addOption (0.5 sec)

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

            // but we still didn't add the result to the queue. Doing it from resolve threads would result in non-reproducible graphs, where
            // edges could be added in different order. To avoid this, the addition of new edges is done serially.
            for (EdgeState dependency : dependencies) {
                if (dependencyFilter.isSatisfiedBy(dependency)) {
                    dependency.attachToTargetConfigurations();
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  2. src/math/big/nat.go

    }
    
    // addAt implements z += x<<(_W*i); z must be long enough.
    // (we don't use nat.add because we need z to stay the same
    // slice, and we don't need to normalize z after each addition)
    func addAt(z, x nat, i int) {
    	if n := len(x); n > 0 {
    		if c := addVV(z[i:i+n], z[i:], x); c != 0 {
    			j := i + n
    			if j < len(z) {
    				addVW(z[j:], z[j:], c)
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  3. src/syscall/exec_linux_test.go

    		t.Fatal(err)
    	}
    	orig := strings.TrimSpace(string(b))
    	if strings.Contains(orig, "lo:") && strings.Count(orig, ":") == 1 {
    		// This test expects there to be at least 1 more network interface
    		// in addition to the local network interface, so that it can tell
    		// that unshare worked.
    		t.Skip("not enough network interfaces to test unshare with")
    	}
    
    	cmd := testenv.Command(t, "cat", path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.py

          '/tmp/input_model',
          '/tmp/output_model',
          quantization_options=quantization_options,
          representative_dataset={'your_signature_key': representative_dataset},
        )
    
      # In addition to preset quantization methods, fine-grained control of
      # quantization for each component is also supported.
      _QuantizationComponentSpec = (
          tf.quantization.experimental.QuantizationComponentSpec
      )
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    			order = append(order, j)
    			q.Add(*NewScaledQuantity(j, Scale(k)))
    		}
    		for _, j := range order {
    			q.Sub(*NewScaledQuantity(j, Scale(k)))
    		}
    		if !q.IsZero() {
    			t.Errorf("addition and subtraction did not cancel: %s", &q)
    		}
    	}
    }
    
    func TestAddSubRoundTripAcrossScales(t *testing.T) {
    	q := Quantity{Format: DecimalSI}
    	var order []int64
    	for i := 0; i < 100; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/obj9.go

    			p.From.Offset = 0
    			q.To = p.To
    		}
    		return
    
    	}
    
    	// MOVx sym, Ry becomes MOVD symtoc, REGTMP; MOVx (REGTMP), Ry
    	// MOVx Ry, sym becomes MOVD symtoc, REGTMP; MOVx Ry, (REGTMP)
    	// An addition may be inserted between the two MOVs if there is an offset.
    
    	q := obj.Appendp(p, c.newprog)
    	q.As = AMOVD
    	q.From.Type = obj.TYPE_MEM
    	q.From.Sym = symtoc
    	q.From.Name = obj.NAME_TOCREF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/schema/schema_generated.h

      }
      ::flatbuffers::Offset<AddOptions> Finish() {
        const auto end = fbb_.EndTable(start_);
        auto o = ::flatbuffers::Offset<AddOptions>(end);
        return o;
      }
    };
    
    inline ::flatbuffers::Offset<AddOptions> CreateAddOptions(
        ::flatbuffers::FlatBufferBuilder &_fbb,
        tflite::ActivationFunctionType fused_activation_function = tflite::ActivationFunctionType_NONE,
        bool pot_scale_int16 = true) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  8. pilot/pkg/model/gateway.go

    // When legacyGatewaySelector=true things are a bit more complex, as we support referencing a Service
    // port and translating to the targetPort in addition to just directly referencing a port. In this
    // case, we just make a best effort guess by picking the first match.
    func resolvePorts(number uint32, instances []ServiceTarget, legacyGatewaySelector bool) []uint32 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

            // If the cursor position is on the label of `super`, we want to resolve to the current class. FIR represents `super` as
            // accessing the `super` property on `this`, hence this weird looking if condition. In addition, the current class type is available
            // from the dispatch receiver `this`.
            if (expression is KtLabelReferenceExpression && fir is FirPropertyAccessExpression && fir.calleeReference is FirSuperReference) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  10. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

        subsequently acquired, any and all of the rights conveyed herein.
    
        1.9. "Modifications" means the Source Code and Executable form of
        any of the following:
    
        A. Any file that results from an addition to, deletion from or
        modification of the contents of a file containing Original Software
        or previous Modifications;
    
        B. Any new file that contains any part of the Original Software or
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top