Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 98 of 98 for Id (0.03 sec)

  1. cmd/object-handlers.go

    	}
    
    	setPutObjHeaders(w, objInfo, false, r.Header)
    	// We must not use the http.Header().Set method here because some (broken)
    	// clients expect the x-amz-copy-source-version-id header key to be literally
    	// "x-amz-copy-source-version-id"- not in canonicalized form, preserve it.
    	if srcOpts.VersionID != "" {
    		w.Header()[strings.ToLower(xhttp.AmzCopySourceVersionID)] = []string{srcOpts.VersionID}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  2. cmd/data-scanner.go

    			return
    		}
    	}
    
    	lcEvt := evalActionFromLifecycle(ctx, *i.lifeCycle, lr, rcfg, oi)
    	if i.debug {
    		if versionID != "" {
    			console.Debugf(applyActionsLogPrefix+" lifecycle: %q (version-id=%s), Initial scan: %v\n", i.objectPath(), versionID, lcEvt.Action)
    		} else {
    			console.Debugf(applyActionsLogPrefix+" lifecycle: %q Initial scan: %v\n", i.objectPath(), lcEvt.Action)
    		}
    	}
    
    	switch lcEvt.Action {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		if err != nil {
    			return err
    		}
    	}
    
    	ctx, span := tracing.Start(ctx, "cacher list",
    		attribute.String("audit-id", audit.GetAuditIDTruncated(ctx)),
    		attribute.Stringer("type", c.groupResource))
    	defer span.End(500 * time.Millisecond)
    
    	if utilfeature.DefaultFeatureGate.Enabled(features.ResilientWatchCacheInitialization) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. pkg/workloadapi/workload.pb.go

    	Status                WorkloadStatus `protobuf:"varint,17,opt,name=status,proto3,enum=istio.workload.WorkloadStatus" json:"status,omitempty"`
    	// The cluster ID that the workload instance belongs to
    	ClusterId string `protobuf:"bytes,18,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"`
    	// The Locality defines information about where a workload is geographically deployed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  8. 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