Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 63 for getSum (0.23 sec)

  1. src/cmd/compile/internal/test/inl_test.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

      let centerPoint = null;  // Center point for scaling
    
      // Convert event coordinates to svg coordinates.
      function toSvg(x, y) {
        const p = svg.createSVGPoint();
        p.x = x;
        p.y = y;
        let m = svg.getCTM();
        if (m == null) m = svg.getScreenCTM(); // Firefox workaround.
        return p.matrixTransform(m.inverse());
      }
    
      // Change the scaling for the svg to s, keeping the point denoted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        public Organization getOrganization() {
            return getModel().getOrganization();
        }
    
        public void setScm(Scm scm) {
            getModel().setScm(scm);
        }
    
        public Scm getScm() {
            return getModel().getScm();
        }
    
        public void setMailingLists(List<MailingList> mailingLists) {
            getModel().setMailingLists(mailingLists);
        }
    
        public List<MailingList> getMailingLists() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

        Operation* op, PatternRewriter& rewriter) const {
      auto tf_unpack_op = cast<TF::UnpackOp>(op);
    
      auto input = tf_unpack_op.getValue();
      auto num = rewriter.getI32IntegerAttr(tf_unpack_op.getNum());
      // Axis can be negative.
      auto axis = rewriter.getI32IntegerAttr(tf_unpack_op.getAxis());
    
      rewriter.replaceOpWithNewOp<UnpackOp>(op, tf_unpack_op.getOutput().getTypes(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. pkg/kube/inject/inject.go

    		imageName = global.GetProxy().GetImage()
    	}
    
    	if it, ok := annotations[annotation.SidecarProxyImageType.Name]; ok {
    		imageType = it
    	}
    
    	return imageURL(global.GetHub(), imageName, tag, imageType)
    }
    
    func InboundTrafficPolicyMode(meshConfig *meshconfig.MeshConfig) string {
    	switch meshConfig.GetInboundTrafficPolicy().GetMode() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  6. src/net/http/httputil/reverseproxy_test.go

    		mu.Lock()
    		defer mu.Unlock()
    		log = append(log, event)
    	}
    	rp := NewSingleHostReverseProxy(backendURL)
    	const size = 1234
    	rp.BufferPool = bufferPool{
    		get: func() []byte {
    			addLog("getBuf")
    			return make([]byte, size)
    		},
    		put: func(p []byte) {
    			addLog("putBuf-" + strconv.Itoa(len(p)))
    		},
    	}
    	frontend := httptest.NewServer(rp)
    	defer frontend.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.api.publish.maven.tasks.GenerateMavenPom.getDestination()> does not have raw return type assignable to org.gradle.api.provider.Property in (GenerateMavenPom.java:0)
    Method <org.gradle.api.publish.maven.tasks.GenerateMavenPom.getPom()> does not have raw return type assignable to org.gradle.api.provider.Property in (GenerateMavenPom.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    	CmdGet.Run = runGet // break init loop
    	CmdGet.Flag.Var(&getD, "d", "")
    	CmdGet.Flag.Var(&getU, "u", "")
    }
    
    func runGet(ctx context.Context, cmd *base.Command, args []string) {
    	switch getU.version {
    	case "", "upgrade", "patch":
    		// ok
    	default:
    		base.Fatalf("go: unknown upgrade flag -u=%s", getU.rawVersion)
    	}
    	if getD.set {
    		if !getD.value {
    			base.Fatalf("go: -d flag may not be set to false")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        if (!result_type || !result_type.hasStaticShape()) {
          return failure();
        }
    
        DenseIntElementsAttr num_attr;
        if (!matchPattern(op.getNum(), m_Constant(&num_attr))) {
          return rewriter.notifyMatchFailure(op, "Num must be a constant scalar");
        }
    
        if (num_attr.begin() == num_attr.end()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    }
    
    func (x *CNIConfig) GetEnabled() *wrapperspb.BoolValue {
    	if x != nil {
    		return x.Enabled
    	}
    	return nil
    }
    
    func (x *CNIConfig) GetHub() string {
    	if x != nil {
    		return x.Hub
    	}
    	return ""
    }
    
    func (x *CNIConfig) GetTag() *structpb.Value {
    	if x != nil {
    		return x.Tag
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top