Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 55 for exportId (0.43 sec)

  1. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Controls whether Istio policy is applied to Pilot.
      google.protobuf.BoolValue enabled = 1;
    }
    
    // Controls telemetry configuration
    message TelemetryConfig {
      // Controls whether telemetry is exported for Pilot.
      google.protobuf.BoolValue enabled = 1;
    
      // Configuration for Telemetry v2.
      TelemetryV2Config v2 = 3;
    }
    
    // Controls whether pilot will configure telemetry v2.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  2. src/cmd/internal/testdir/testdir_test.go

    var stdlibImportcfgString string
    
    func stdlibImportcfg() string {
    	stdlibImportcfgStringOnce.Do(func() {
    		output, err := exec.Command(goTool, "list", "-export", "-f", "{{if .Export}}packagefile {{.ImportPath}}={{.Export}}{{end}}", "std").Output()
    		if err != nil {
    			log.Fatal(err)
    		}
    		stdlibImportcfgString = string(output)
    	})
    	return stdlibImportcfgString
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/init.go

    }
    
    // FindGoWork returns the name of the go.work file for this command,
    // or the empty string if there isn't one.
    // Most code should use Init and Enabled rather than use this directly.
    // It is exported mainly for Go toolchain switching, which must process
    // the go.work very early at startup.
    func FindGoWork(wd string) string {
    	if RootMode == NoRoot {
    		return ""
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    // from the original Go source files to the names
    // used in the final Go files generated by cgo.
    func (p *Package) mangleName(n *Name) {
    	// When using gccgo variables have to be
    	// exported so that they become global symbols
    	// that the C code can refer to.
    	prefix := "_C"
    	if *gccgo && n.IsVar() {
    		prefix = "C"
    	}
    	n.Mangle = prefix + n.Kind + "_" + n.Go
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  5. pkg/controller/disruption/disruption_test.go

    	}
    
    	// Evict simulates the visible effects of eviction in our fake client.
    	evict := func(podNames ...string) {
    		// These GVRs are copied from the generated fake code because they are not exported.
    		var (
    			podsResource                 = schema.GroupVersionResource{Group: "", Version: "v1", Resource: "pods"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. cmd/admin-handlers-users.go

    	allPoliciesFile,
    	allUsersFile,
    	allGroupsFile,
    	allSvcAcctsFile,
    	userPolicyMappingsFile,
    	groupPolicyMappingsFile,
    	stsUserPolicyMappingsFile,
    }
    
    // ExportIAMHandler - exports all iam info as a zipped file
    func (a adminAPIHandlers) ExportIAM(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	// Get current object layer instance.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/httproute_test.go

    		Hostname:       host.Name(hostname),
    		DefaultAddress: ip,
    		Resolution:     model.DNSLB,
    		Attributes: model.ServiceAttributes{
    			ServiceRegistry: provider.Kubernetes,
    			Namespace:       namespace,
    			ExportTo:        sets.New(v),
    		},
    	}
    	if ip == wildcardIPv4 {
    		service.Resolution = model.Passthrough
    	}
    
    	Ports := make([]*model.Port, 0)
    
    	for _, p := range ports {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/load.go

    // license that can be found in the LICENSE file.
    
    package modload
    
    // This file contains the module-mode package loader, as well as some accessory
    // functions pertaining to the package import graph.
    //
    // There are two exported entry points into package loading — LoadPackages and
    // ImportFromFiles — both implemented in terms of loadFromRoots, which itself
    // manipulates an instance of the loader struct.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. src/cmd/dist/build.go

    		// Also include $DIST_UNMODIFIED_PATH with the original $PATH
    		// for the internal needs of "dist banner", along with export
    		// so that it reaches the dist process. See its comment below.
    		var exportFormat string
    		if !*windows && !*plan9 {
    			exportFormat = "export " + format
    		} else {
    			exportFormat = format
    		}
    		xprintf(exportFormat, "DIST_UNMODIFIED_PATH", os.Getenv("PATH"))
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  10. src/go/types/expr.go

    						check.errorf(x, InvalidStructLit, "too many values in struct literal of type %s", base)
    						break // cannot continue
    					}
    					// i < len(fields)
    					fld := fields[i]
    					if !fld.Exported() && fld.pkg != check.pkg {
    						check.errorf(x,
    							UnexportedLitField,
    							"implicit assignment to unexported field %s in struct literal of type %s", fld.name, base)
    						continue
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
Back to top