Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 105 for Trailing (0.16 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    			break
    		}
    		prefix = append(prefix, byte('\t'))
    	}
    	// Remove prefix from all tabs, fail otherwise.
    	for i := range lines {
    		line := lines[i]
    		// It's OK for the last line to be blank (trailing \n)
    		if i == len(lines)-1 && len(line) <= len(prefix) && bytes.TrimSpace(line) == nil {
    			lines[i] = []byte{}
    			break
    		}
    		if !bytes.HasPrefix(line, prefix) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_messages.go

    				}
    				if len(m.serverName) != 0 {
    					// Multiple names of the same name_type are prohibited.
    					return false
    				}
    				m.serverName = string(serverName)
    				// An SNI value may not include a trailing dot.
    				if strings.HasSuffix(m.serverName, ".") {
    					return false
    				}
    			}
    		case extensionStatusRequest:
    			// RFC 4366, Section 3.6
    			var statusType uint8
    			var ignored cryptobyte.String
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Iterators.java

       * @param size the desired size of each partition
       * @return an iterator of immutable lists containing the elements of {@code iterator} divided into
       *     partitions (the final iterable may have trailing null elements)
       * @throws IllegalArgumentException if {@code size} is nonpositive
       */
      public static <T extends @Nullable Object>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Iterators.java

       * @param size the desired size of each partition
       * @return an iterator of immutable lists containing the elements of {@code iterator} divided into
       *     partitions (the final iterable may have trailing null elements)
       * @throws IllegalArgumentException if {@code size} is nonpositive
       */
      public static <T extends @Nullable Object>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier.go

    			cidrsForProxier = append(cidrsForProxier, cidr)
    		}
    	}
    	proxier.serviceCIDRs = strings.Join(cidrsForProxier, ",")
    }
    
    const (
    	// Maximum length for one of our chain name prefixes, including the trailing
    	// hyphen.
    	chainNamePrefixLengthMax = 16
    
    	// Maximum length of the string returned from servicePortChainNameBase or
    	// servicePortEndpointChainNameBase.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    			}
    		}
    	}
    
    	invalid := []string{
    		"1.1.M",
    		"1+1.0M",
    		"0.1mi",
    		"0.1am",
    		"aoeu",
    		".5i",
    		"1i",
    		"-3.01i",
    		"-3.01e-",
    
    		// trailing whitespace is forbidden
    		" 1",
    		"1 ",
    	}
    	for _, item := range invalid {
    		_, err := ParseQuantity(item)
    		if err == nil {
    			t.Errorf("%v parsed unexpectedly", item)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    		},
    		"unknown resource type": {
    			args:  []string{"unknown/foo"},
    			errFn: expectErr,
    		},
    		"leading slash": {
    			args:  []string{"/bar"},
    			errFn: expectErr,
    		},
    		"trailing slash": {
    			args:  []string{"bar/"},
    			errFn: expectErr,
    		},
    		"valid status subresource": {
    			args:        []string{"pods/foo"},
    			subresource: "status",
    			errFn:       expectNoErr,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loader/loader.go

    			// object file, the symbol data may not always contain trailing zeros,
    			// e.g. for [5]int{1,2,3} and [100]int{1,2,3}, the data is same
    			// (although the size is different).
    			// Also, for short symbols, the content hash is the identity function of
    			// the 8 bytes, and trailing zeros doesn't change the hash value, e.g.
    			// hash("A") == hash("A\0\0\0").
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    			ret = &MethodWithQualifiers{Method: ret, Qualifiers: q, RefQualifier: ""}
    		} else if mwq, ok := ret.(*MethodWithQualifiers); ok {
    			// Merge adjacent qualifiers.  This case
    			// happens with a function with a trailing
    			// ref-qualifier.
    			mwq.Qualifiers = mergeQualifiers(q, mwq.Qualifiers)
    		} else {
    			// Merge adjacent qualifiers.  This case
    			// happens with multi-dimensional array types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  10. src/syscall/syscall_windows.go

    	if n > 0 {
    		sl += int32(n) + 1
    	}
    	if sa.raw.Path[0] == '@' || (sa.raw.Path[0] == 0 && sl > 3) {
    		// Check sl > 3 so we don't change unnamed socket behavior.
    		sa.raw.Path[0] = 0
    		// Don't count trailing NUL for abstract address.
    		sl--
    	}
    
    	return unsafe.Pointer(&sa.raw), sl, nil
    }
    
    func (rsa *RawSockaddrAny) Sockaddr() (Sockaddr, error) {
    	switch rsa.Addr.Family {
    	case AF_UNIX:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
Back to top