Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 245 for populator (0.49 sec)

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

    	ConfigString string
    	// If provided, the ConfigString will be treated as a go template, with this as input params
    	ConfigTemplateInput any
    
    	// Services to pre-populate as part of the service discovery
    	Services  []*model.Service
    	Instances []*model.ServiceInstance
    	Gateways  []model.NetworkGateway
    
    	// If provided, this mesh config will be used
    	MeshConfig      *meshconfig.MeshConfig
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.cc

            profile_utils::CpuUtils::ConvertClockCycleToTime(ElapsedCycles());
    
        return std::chrono::duration_cast<std::chrono::milliseconds>(duration)
            .count();
      }
    };
    
    // Populates input_output_alias field in the HLO Module proto.
    Status PopulateInputOutputAliasing(
        mlir::func::FuncOp main_fn,
        XlaCompiler::CompilationResult* compilation_result, bool use_tuple_args) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. src/runtime/runtime.go

    	// startpanic_m. If gp == nil, we read panicking.Load() > 0, so an Add
    	// must have happened-before.
    	if panicking.Load() > 0 {
    		return ^uintptr(0)
    	}
    	return old
    }
    
    // auxv is populated on relevant platforms but defined here for all platforms
    // so x/sys/cpu can assume the getAuxv symbol exists without keeping its list
    // of auxv-using GOOS build tags in sync.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. cni/test/install_cni.go

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if err = file.AtomicWrite(cniConfigFilepath, cniConfig, os.FileMode(0o644)); err != nil {
    		t.Fatal(err)
    	}
    }
    
    // populateTempDirs populates temporary test directories with golden files and
    // other related configuration.
    func populateTempDirs(wd string, cniDirOrderedFiles []string, tempCNIConfDir, tempK8sSvcAcctDir string, t *testing.T) {
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. src/runtime/tracestack.go

    func tracefpunwindoff() bool {
    	return debug.tracefpunwindoff != 0 || (goarch.ArchFamily != goarch.AMD64 && goarch.ArchFamily != goarch.ARM64)
    }
    
    // fpTracebackPCs populates pcBuf with the return addresses for each frame and
    // returns the number of PCs written to pcBuf. The returned PCs correspond to
    // "physical frames" rather than "logical frames"; that is if A is inlined into
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/net/http/server.go

    	// to CloseNotifier callers. It is usually of type *net.TCPConn or
    	// *tls.Conn.
    	rwc net.Conn
    
    	// remoteAddr is rwc.RemoteAddr().String(). It is not populated synchronously
    	// inside the Listener's Accept goroutine, as some implementations block.
    	// It is populated immediately inside the (*conn).serve goroutine.
    	// This is the value of a Handler's (*Request).RemoteAddr.
    	remoteAddr string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

            when this object was created. It is not guaranteed to be set in happens-before
            order across separate operations. Clients may not set this value. It is represented
            in RFC3339 form and is in UTC. Populated by the system. Read-only. Null for
            lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata'
          jsonPath: .metadata.creationTimestamp
          name: Age
          type: date
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  8. pkg/istio-agent/agent.go

    		// This was never completely correct - PROV_CERT are only intended for auth with CA_ADDR,
    		// and should not be involved in determining the root CA.
    		// For VMs, the root cert file used to auth may be populated afterwards.
    		// Thus, return directly here and skip checking for existence.
    		return a.secOpts.ProvCert + "/root-cert.pem", nil
    	} else if a.secOpts.FileMountedCerts {
    		// FileMountedCerts - Load it from Proxy Metadata.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  9. pilot/pkg/features/pilot.go

    		"If enabled, metadata representing canonical services for ServiceEntry resources with a location of mesh_external will be populated"+
    			"in the cluster metadata for those endpoints.").Get()
    
    	LocalClusterSecretWatcher = env.Register("LOCAL_CLUSTER_SECRET_WATCHER", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. src/runtime/export_test.go

    // Add.
    func NewAddrRanges() AddrRanges {
    	r := addrRanges{}
    	r.init(testSysStat)
    	return AddrRanges{r, true}
    }
    
    // MakeAddrRanges creates a new addrRanges populated with
    // the ranges in a.
    //
    // The returned AddrRanges is immutable, so methods like
    // Add will fail.
    func MakeAddrRanges(a ...AddrRange) AddrRanges {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
Back to top