Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 106 for Fermat (0.13 sec)

  1. pkg/workloadapi/workload.pb.go

    //
    // In some cases, we do not know the IP address of a Workload. For instance, we may simply know
    // that there is a workload behind a gateway, and rely on the gateway to handle the rest.
    // In this case, the key format will be "resource-uid". The resource can be a Pod, WorkloadEntry, etc.
    // These resources cannot be looked up on-demand.
    //
    // In some cases, we do not know the IP address of a Service. These services cannot be used for matching
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  2. src/net/http/request.go

    	// ":authority" pseudo-header field.
    	// It may be of the form "host:port". For international domain
    	// names, Host may be in Punycode or Unicode form. Use
    	// golang.org/x/net/idna to convert it to either format if
    	// needed.
    	// To prevent DNS rebinding attacks, server Handlers should
    	// validate that the Host header has a value for which the
    	// Handler considers itself authoritative. The included
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            String version = parent.getVersion();
    
            ModelResolver modelResolver = getModelResolver(request);
            Objects.requireNonNull(
                    modelResolver,
                    String.format(
                            "request.modelResolver cannot be null (parent POM %s and POM %s)",
                            ModelProblemUtils.toId(groupId, artifactId, version),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  4. src/cmd/dist/test.go

    		cmd := exec.Command(gorootBinGo, "list")
    		if t.short {
    			// In short test mode, use a format string to only
    			// list packages and commands that have tests.
    			const format = "{{if (or .TestGoFiles .XTestGoFiles)}}{{.ImportPath}}{{end}}"
    			cmd.Args = append(cmd.Args, "-f", format)
    		}
    		if t.race {
    			cmd.Args = append(cmd.Args, "-tags=race")
    		}
    		cmd.Args = append(cmd.Args, "std", "cmd")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            String version = parent.getVersion();
    
            ModelResolver modelResolver = request.getModelResolver();
            Objects.requireNonNull(
                    modelResolver,
                    String.format(
                            "request.modelResolver cannot be null (parent POM %s and POM %s)",
                            ModelProblemUtils.toId(groupId, artifactId, version),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    				},
    			},
    		},
    		Status: corev1.NodeStatus{
    			Allocatable: map[corev1.ResourceName]resource.Quantity{
    				"cpu": {
    					Format: "500m",
    				},
    			},
    			Capacity: map[corev1.ResourceName]resource.Quantity{
    				"cpu": {
    					Format: "500m",
    				},
    			},
    			Images: []corev1.ContainerImage{
    				{
    					Names: []string{"test"},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    }
    
    def TF_ConvertToCooTensorOp : TF_Op<"ConvertToCooTensor", [Pure]> {
      let summary = [{
    Op that converts tensors into coo format.
      }];
    
      let description = [{
    This op coverts the dense, sparse and ragged tensor into standard coo tensor
    format which contains three 1D tensors.
      }];
    
      let arguments = (ins
        TF_Int32Tensor:$indices_or_row_splits,
        TF_Int32Tensor:$values,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  8. src/runtime/pprof/pprof_test.go

    				t.Errorf("Bad %v entry, expect:\n%v\ngot:\n%v", test.name, test.re, prof)
    			}
    		}
    	})
    
    	t.Run("proto", func(t *testing.T) {
    		// proto format
    		var w bytes.Buffer
    		Lookup("block").WriteTo(&w, 0)
    		p, err := profile.Parse(&w)
    		if err != nil {
    			t.Fatalf("failed to parse profile: %v", err)
    		}
    		t.Logf("parsed proto: %s", p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/init.go

    	}
    	return f, nil
    }
    
    // WriteWorkFile cleans and writes out the go.work file to the given path.
    func WriteWorkFile(path string, wf *modfile.WorkFile) error {
    	wf.SortBlocks()
    	wf.Cleanup()
    	out := modfile.Format(wf.Syntax)
    
    	return os.WriteFile(path, out, 0666)
    }
    
    // UpdateWorkGoVersion updates the go line in wf to be at least goVers,
    // reporting whether it changed the file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  10. pkg/kubelet/status/status_manager_test.go

    	}
    	syncer.SetPodStatus(testPod, podStatus)
    	syncer.syncBatch(true)
    	verifyActions(t, syncer, []core.Action{})
    
    	// If the pod status is the same, only the timestamp is in Rfc3339 format (lower precision without nanosecond),
    	// a reconciliation is not needed, syncBatch should do nothing.
    	// The StartTime should have been set in SetPodStatus().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
Back to top