Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for tbd (0.03 sec)

  1. src/cmd/go/internal/work/security_test.go

    	{"-Wl,-framework,Chocolate"},
    	{"-Wl,-unresolved-symbols=ignore-all"},
    	{"-Wl,-z,relro"},
    	{"-Wl,-z,relro,-z,now"},
    	{"-Wl,-z,now"},
    	{"-Wl,-z,noexecstack"},
    	{"libcgotbdtest.tbd"},
    	{"./libcgotbdtest.tbd"},
    }
    
    var badLinkerFlags = [][]string{
    	{"-DFOO"},
    	{"-Dfoo=bar"},
    	{"-W"},
    	{"-Wall"},
    	{"-fobjc-arc"},
    	{"-fno-objc-arc"},
    	{"-fomit-frame-pointer"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/security.go

    	re(`-Wl,--(no-)?warn-([^,]+)`),
    	re(`-Wl,-?-wrap[=,][^,@\-][^,]*`),
    	re(`-Wl(,-z,(relro|now|(no)?execstack))+`),
    
    	re(`[a-zA-Z0-9_/].*\.(a|o|obj|dll|dylib|so|tbd)`), // direct linker inputs: x.o or libfoo.so (but not -foo.o or @foo.o)
    	re(`\./.*\.(a|o|obj|dll|dylib|so|tbd)`),
    }
    
    var validLinkerFlagsWithNextArg = []string{
    	"-arch",
    	"-F",
    	"-l",
    	"-L",
    	"-framework",
    	"-isysroot",
    	"--sysroot",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. manifests/charts/gateways/istio-ingress/values.yaml

        # configured to have the same Mesh ID value. If an existing cluster 'joins' a
        # multicluster mesh, it will need to be migrated to the new mesh ID. Details
        # of migration TBD, and it may be a disruptive operation to change the Mesh
        # ID post-install.
        #
        # If the mesh admin does not specify a value, Istio will use the value of the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. manifests/charts/gateways/istio-egress/values.yaml

        # configured to have the same Mesh ID value. If an existing cluster 'joins' a
        # multicluster mesh, it will need to be migrated to the new mesh ID. Details
        # of migration TBD, and it may be a disruptive operation to change the Mesh
        # ID post-install.
        #
        # If the mesh admin does not specify a value, Istio will use the value of the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/values.yaml

        # configured to have the same Mesh ID value. If an existing cluster 'joins' a
        # multicluster mesh, it will need to be migrated to the new mesh ID. Details
        # of migration TBD, and it may be a disruptive operation to change the Mesh
        # ID post-install.
        #
        # If the mesh admin does not specify a value, Istio will use the value of the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/values.yaml

        # configured to have the same Mesh ID value. If an existing cluster 'joins' a
        # multicluster mesh, it will need to be migrated to the new mesh ID. Details
        # of migration TBD, and it may be a disruptive operation to change the Mesh
        # ID post-install.
        #
        # If the mesh admin does not specify a value, Istio will use the value of the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  7. cmd/erasure-server-pool-rebalance.go

    			// to create the appropriate stack.
    			versionsSorter(fivs.Versions).reverse()
    
    			var rebalanced, expired int
    			for _, version := range fivs.Versions {
    				// Skip transitioned objects for now. TBD
    				if version.IsRemote() {
    					continue
    				}
    
    				// Apply lifecycle rules on the objects that are expired.
    				if filterLifecycle(bucket, version.Name, version) {
    					expired++
    					continue
    				}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/magic.go

    // Our strategy is to precompute 1/c then do
    //   ⎣x / c⎦ = ⎣x * (1/c)⎦.
    // 1/c is less than 1, so we can't compute it directly in
    // integer arithmetic.  Let's instead compute 2^e/c
    // for a value of e TBD (^ = exponentiation).  Then
    //   ⎣x / c⎦ = ⎣x * (2^e/c) / 2^e⎦.
    // Dividing by 2^e is easy.  2^e/c isn't an integer, unfortunately.
    // So we must approximate it.  Let's call its approximation m.
    // We'll then compute
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/volumebinding/binder.go

    //     down the list of eligible nodes based on the bound PV's NodeAffinity (if any).
    //     b. Invokes all filter plugins, parallelized across nodes.  FindPodVolumes() is invoked here.
    //     c. Invokes all score plugins.  Future/TBD
    //     d. Selects the best node for the Pod.
    //     e. Invokes all reserve plugins. AssumePodVolumes() is invoked here.
    //     i.  If PVC binding is required, cache in-memory only:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // configured to have the same Mesh ID value. If an existing cluster 'joins' a
      // multicluster mesh, it will need to be migrated to the new mesh ID. Details
      // of migration TBD, and it may be a disruptive operation to change the Mesh
      // ID post-install.
      //
      // If the mesh admin does not specify a value, Istio will use the value of the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top