Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 106 for extr6 (0.05 sec)

  1. staging/src/k8s.io/api/authentication/v1/generated.pb.go

    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	if len(m.Extra) > 0 {
    		keysForExtra := make([]string, 0, len(m.Extra))
    		for k := range m.Extra {
    			keysForExtra = append(keysForExtra, string(k))
    		}
    		github_com_gogo_protobuf_sortkeys.Strings(keysForExtra)
    		for iNdEx := len(keysForExtra) - 1; iNdEx >= 0; iNdEx-- {
    			v := m.Extra[string(keysForExtra[iNdEx])]
    			baseI := i
    			{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 72K bytes
    - Viewed (0)
  2. istioctl/pkg/describe/describe.go

    ) string {
    	extra := make([]string, 0)
    	if lb != nil {
    		extra = append(extra, "load balancer")
    	}
    	if connectionPool != nil {
    		extra = append(extra, "connection pool")
    	}
    	if outlierDetection != nil {
    		extra = append(extra, "outlier detection")
    	}
    	if len(extra) > 0 {
    		return fmt.Sprintf("Policies: %s\n", strings.Join(extra, "/"))
    	}
    	return ""
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  3. src/fmt/fmt_test.go

    	// erroneous things
    	{"", nil, "%!(EXTRA <nil>)"},
    	{"", 2, "%!(EXTRA int=2)"},
    	{"no args", "hello", "no args%!(EXTRA string=hello)"},
    	{"%s %", "hello", "hello %!(NOVERB)"},
    	{"%s %.2", "hello", "hello %!(NOVERB)"},
    	{"%017091901790959340919092959340919017929593813360", 0, "%!(NOVERB)%!(EXTRA int=0)"},
    	{"%184467440737095516170v", 0, "%!(NOVERB)%!(EXTRA int=0)"},
    	// Extra argument errors should format without flags set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * of the corresponding getter or setter method.</li>
     *
     * <li>The extra properties of the project.  Each project maintains a map of extra properties, which
     * can contain any arbitrary name -&gt; value pair.  Once defined, the properties of this scope are readable and writable.
     * See <a href="#extraproperties">extra properties</a> for more details.</li>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/zz_generated.conversion.go

    		return err
    	}
    	if err := Convert_v1alpha1_ClaimOrExpression_To_apiserver_ClaimOrExpression(&in.UID, &out.UID, s); err != nil {
    		return err
    	}
    	out.Extra = *(*[]apiserver.ExtraMapping)(unsafe.Pointer(&in.Extra))
    	return nil
    }
    
    // Convert_v1alpha1_ClaimMappings_To_apiserver_ClaimMappings is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. src/go/printer/nodes.go

    		p.print(token.LBRACE)
    		p.exprList(x.Lbrace, x.Elts, 1, commaTerm, x.Rbrace, x.Incomplete)
    		// do not insert extra line break following a /*-style comment
    		// before the closing '}' as it might break the code if there
    		// is no trailing ','
    		mode := noExtraLinebreak
    		// do not insert extra blank following a /*-style comment
    		// before the closing '}' unless the literal is empty
    		if len(x.Elts) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener.go

    func (l listenerBinding) Primary() string {
    	if len(l.binds) == 0 {
    		return ""
    	}
    	return l.binds[0]
    }
    
    // Extra returns any additional bindings. This is always empty if dual stack is disabled
    func (l listenerBinding) Extra() []string {
    	if !features.EnableDualStack || len(l.binds) == 1 {
    		return nil
    	}
    	return l.binds[1:]
    }
    
    type outboundListenerEntry struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. src/testing/testing.go

    		m.after()
    		debug.SetTraceback("all")
    		extra := ""
    
    		if list := runningList(); len(list) > 0 {
    			var b strings.Builder
    			b.WriteString("\nrunning tests:")
    			for _, name := range list {
    				b.WriteString("\n\t")
    				b.WriteString(name)
    			}
    			extra = b.String()
    		}
    		panic(fmt.Sprintf("test timed out after %v%s", *timeout, extra))
    	})
    	return deadline
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. src/cmd/internal/testdir/testdir_test.go

    // 1.17 or 1.18 compiler report extra errors, so we can't match correctly on both. We
    // now set the patterns to match correctly on all the 1.18 errors.
    // This list remains here just as a reference and for comparison - these files all pass.
    var _ = setOf(
    	"import1.go",      // types2 reports extra errors
    	"initializerr.go", // types2 reports extra error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  10. src/syscall/zsyscall_windows.go

    	return
    }
    
    func DnsQuery(name string, qtype uint16, options uint32, extra *byte, qrs **DNSRecord, pr *byte) (status error) {
    	var _p0 *uint16
    	_p0, status = UTF16PtrFromString(name)
    	if status != nil {
    		return
    	}
    	return _DnsQuery(_p0, qtype, options, extra, qrs, pr)
    }
    
    func _DnsQuery(name *uint16, qtype uint16, options uint32, extra *byte, qrs **DNSRecord, pr *byte) (status error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (1)
Back to top