Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 212 for endPos (0.12 sec)

  1. staging/src/k8s.io/api/storage/v1alpha1/types.go

    	// be a DNS subdomain (dots allowed, 253 characters). To ensure that
    	// there are no conflicts with other CSI drivers on the cluster, the recommendation
    	// is to use csisc-<uuid>, a generated name, or a reverse-domain name which ends
    	// with the unique CSI driver name.
    	//
    	// Objects are namespaced.
    	//
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/validtype.go

    		//           and the (uninstantiated) A is recorded in check.valids. As a
    		//           consequence, when checking the remaining declarations, which
    		//           are not valid, the validity check ends prematurely because A
    		//           is considered valid, even though its validity depends on the
    		//           type argument provided to it.
    		//
    		//           A correct optimization is important for pathological cases.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. src/go/types/validtype.go

    		//           and the (uninstantiated) A is recorded in check.valids. As a
    		//           consequence, when checking the remaining declarations, which
    		//           are not valid, the validity check ends prematurely because A
    		//           is considered valid, even though its validity depends on the
    		//           type argument provided to it.
    		//
    		//           A correct optimization is important for pathological cases.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. src/text/template/parse/lex_test.go

    		mkItem(itemText, "hello-"),
    		mkItem(itemError, `unclosed comment`),
    	}},
    	{"text with comment close separated from delim", "hello-{{/* */ }}-world", []item{
    		mkItem(itemText, "hello-"),
    		mkItem(itemError, `comment ends before closing delimiter`),
    	}},
    	// This one is an error that we can't catch because it breaks templates with
    	// minimized JavaScript. Should have fixed it before Go 1.1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 15:03:43 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  5. pkg/api/v1/endpoints/util_test.go

    					{IP: "5.6.7.8"},
    					{IP: "5.6.7.8", TargetRef: podRef("uid-1")},
    				},
    				Ports: []v1.EndpointPort{{Port: 111}},
    			}},
    		}, {
    			name: "two sets, two mixed ips, two dup ip with uid, dup port, wrong order, ends up with split addresses",
    			given: []v1.EndpointSubset{{
    				Addresses: []v1.EndpointAddress{{IP: "5.6.7.8"}},
    				Ports:     []v1.EndpointPort{{Port: 111}},
    			}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/primitives/Bytes.java

          array[j] = tmp;
        }
      }
    
      /**
       * Performs a right rotation of {@code array} of "distance" places, so that the first element is
       * moved to index "distance", and the element at index {@code i} ends up at index {@code (distance
       * + i) mod array.length}. This is equivalent to {@code Collections.rotate(Bytes.asList(array),
       * distance)}, but is somewhat faster.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/branchelim.go

    // loadAddr is a set of values which are used to compute the address of a load.
    // Those values are exempt from CMOV generation.
    func elimIfElse(f *Func, loadAddr *sparseSet, b *Block) bool {
    	// See if 'b' ends in an if/else: it should
    	// have two successors, both of which are BlockPlain
    	// and succeeded by the same block.
    	if b.Kind != BlockIf || b.Likely != BranchUnknown {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 30 17:46:51 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  8. src/strings/replace_test.go

    		}
    	}
    }
    
    // TestGenericTrieBuilding verifies the structure of the generated trie. There
    // is one node per line, and the key ending with the current line is in the
    // trie if it ends with a "+".
    func TestGenericTrieBuilding(t *testing.T) {
    	testCases := []struct{ in, out string }{
    		{"abc;abdef;abdefgh;xx;xy;z", `-
    			a-
    			.b-
    			..c+
    			..d-
    			...ef+
    			.....gh+
    			x-
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 22:53:05 UTC 2017
    - 14.1K bytes
    - Viewed (0)
  9. src/encoding/asn1/asn1.go

    // it's fast to parse and, unlike BER, has a unique encoding for every object.
    // When calculating hashes over objects, it's important that the resulting
    // bytes be the same at both ends and DER removes this margin of error.
    //
    // ASN.1 is very complex and this package doesn't attempt to implement
    // everything by any means.
    
    import (
    	"errors"
    	"fmt"
    	"math"
    	"math/big"
    	"reflect"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  10. src/net/http/fs.go

    // might unsafely use [filepath.Join] on r.URL.Path without sanitizing
    // it and then use that filepath.Join result as the name argument.
    //
    // As another special case, ServeFile redirects any request where r.URL.Path
    // ends in "/index.html" to the same path, without the final
    // "index.html". To avoid such redirects either modify the path or
    // use [ServeContent].
    //
    // Outside of those two special cases, ServeFile does not use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top