Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 141 for Armode (0.18 sec)

  1. testing/architecture-test/src/changes/archunit-store/public-api-symmetrical-accessors-nullability.txt

    Accessors for org.gradle.StartParameter.gradleUserHomeDir don't use symmetrical @Nullable
    Accessors for org.gradle.StartParameter.taskNames don't use symmetrical @Nullable
    Accessors for org.gradle.api.tasks.AbstractCopyTask.dirMode don't use symmetrical @Nullable
    Accessors for org.gradle.api.tasks.AbstractCopyTask.fileMode don't use symmetrical @Nullable
    Accessors for org.gradle.api.tasks.AbstractExecTask.args don't use symmetrical @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. pkg/proxy/util/utils.go

    }
    
    func IsVIPMode(ing v1.LoadBalancerIngress) bool {
    	if !utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) {
    		return true // backwards compat
    	}
    	if ing.IPMode == nil {
    		return true
    	}
    	return *ing.IPMode == v1.LoadBalancerIPModeVIP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. src/cmd/distpack/pack.go

    	tw := tar.NewWriter(zw)
    
    	// Find the mode and mtime to use for directory entries,
    	// based on the mode and mtime of the first file we see.
    	// We know that modes and mtimes are uniform across the archive.
    	var dirMode fs.FileMode
    	var mtime time.Time
    	for _, f := range a.Files {
    		dirMode = fs.ModeDir | f.Mode | (f.Mode&0444)>>2 // copy r bits down to x bits
    		mtime = f.Time
    		break
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/dependencyLocking-lockModeSelection/tests/locking-mode.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 31 bytes
    - Viewed (0)
  5. tools/istio-clean-iptables/pkg/cmd/testdata/inbound-interception-mode.golden

    Eoin Fennessy <******@****.***> 1715615475 +0100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/unify.go

    		if traceInference {
    			u.tracef("%s ≡ %s\t// swap", y, x)
    		}
    		x, y = y, x
    	}
    
    	// Type elements (array, slice, etc. elements) use emode for unification.
    	// Element types must match exactly if the types are used in an assignment.
    	emode := mode
    	if mode&assign != 0 {
    		emode |= exact
    	}
    
    	// Continue with unaliased types but don't lose original alias names, if any (go.dev/issue/67628).
    	xorig, x := x, Unalias(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  7. pkg/model/proxy.go

    	case SidecarProxy, Router, Waypoint, Ztunnel:
    		return true
    	default:
    		return false
    	}
    }
    
    // IPMode represents the IP mode of proxy.
    type IPMode int
    
    // IPMode constants starting with index 1.
    const (
    	IPv4 IPMode = iota + 1
    	IPv6
    	Dual
    )
    
    func DiscoverIPMode(addrs []string) IPMode {
    	if networkutil.AllIPv4(addrs) {
    		return IPv4
    	} else if networkutil.AllIPv6(addrs) {
    		return IPv6
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  8. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFileHelper.groovy

        }
    
        private static int toMode(String permissions) {
            int m = [6, 3, 0].inject(0) { mode, pos ->
                mode |= permissions[9 - pos - 3] == 'r' ? 4 << pos : 0
                mode |= permissions[9 - pos - 2] == 'w' ? 2 << pos : 0
                mode |= permissions[9 - pos - 1] == 'x' ? 1 << pos : 0
                return mode
            }
            return m
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. pkg/apis/core/fuzzer/fuzzer.go

    			empty := ""
    			if j.Service == nil {
    				j.Service = &empty
    			}
    		},
    		func(j *core.LoadBalancerStatus, c fuzz.Continue) {
    			ipMode := core.LoadBalancerIPModeVIP
    			for i := range j.Ingress {
    				if j.Ingress[i].IPMode == nil {
    					j.Ingress[i].IPMode = &ipMode
    				}
    			}
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 04:32:01 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. pkg/istio-agent/agent.go

    	ID          string
    	IPAddresses []string
    	Type        model.NodeType
    	ipMode      model.IPMode
    	DNSDomain   string
    }
    
    func (node *Proxy) DiscoverIPMode() {
    	node.ipMode = model.DiscoverIPMode(node.IPAddresses)
    }
    
    // IsIPv6 returns true if proxy only supports IPv6 addresses.
    func (node *Proxy) IsIPv6() bool {
    	return node.ipMode == model.IPv6
    }
    
    func (node *Proxy) SupportsIPv6() bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
Back to top