Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for Id (0.04 sec)

  1. pilot/pkg/networking/core/cluster_test.go

    	ipv4Proxy := getProxy()
    	ipv6Proxy := getIPv6Proxy()
    	dsProxy := model.Proxy{
    		Type:        model.SidecarProxy,
    		IPAddresses: []string{"1.1.1.1", "1111:2222::1"},
    		ID:          "v0.default",
    		DNSDomain:   "default.example.org",
    		Metadata: &model.NodeMetadata{
    			Namespace: "not-default",
    		},
    		ConfigNamespace: "not-default",
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    	}
    
    	return syms, maxAlign
    }
    
    // Add buildid to beginning of text segment, on non-ELF systems.
    // Non-ELF binary formats are not always flexible enough to
    // give us a place to put the Go build ID. On those systems, we put it
    // at the very beginning of the text segment.
    // This “header” is read by cmd/go.
    func (ctxt *Link) textbuildid() {
    	if ctxt.IsELF || *flagBuildid == "" {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //	    ForTest        string   // package is only for use in named test
    //	    Export         string   // file containing export data (when using -export)
    //	    BuildID        string   // build ID of the compiled package (when using -export)
    //	    Module         *Module  // info about package's containing module, if any (can be nil)
    //	    Match          []string // command-line patterns matching this package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    // ResourceID represents a 16-bit resource identifier, traditionally created with the MAKEINTRESOURCE macro.
    type ResourceID uint16
    
    // ResourceIDOrString must be either a ResourceID, to specify a resource or resource type by ID,
    // or a string, to specify a resource or resource type by name.
    type ResourceIDOrString interface{}
    
    // Predefined resource names and types.
    var (
    	// Predefined names.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  5. pkg/config/validation/validation_test.go

    							{
    								Source: &security_beta.Source{
    									Namespaces:           []string{"ns"},
    									NotNamespaces:        []string{"ns"},
    									Principals:           []string{"id"},
    									NotPrincipals:        []string{"id"},
    									RequestPrincipals:    []string{"req"},
    									NotRequestPrincipals: []string{"req"},
    								},
    							},
    						},
    						When: []*security_beta.Condition{
    							{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_node_status_test.go

    	// imageList is randomly generated image list
    	var imageList []kubecontainer.Image
    	for ; count > 0; count-- {
    		imageItem := kubecontainer.Image{
    			ID:       string(uuid.NewUUID()),
    			RepoTags: generateImageTags(),
    			Size:     rand.Int63nRange(minImgSize, maxImgSize+1),
    		}
    		imageList = append(imageList, imageItem)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    	}
    	r, err = c.Do(req)
    	if err == nil {
    		r.Body.Close()
    		return fmt.Errorf("Get #2 expected error, got nil")
    	}
    	if mode == http2Mode {
    		expected := "stream ID 3; INTERNAL_ERROR" // client IDs are odd, second stream should be 3
    		if !strings.Contains(err.Error(), expected) {
    			return fmt.Errorf("http2 Get #2: expected error to contain %q, got %q", expected, err)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top