Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 283 for Street (0.39 sec)

  1. src/text/template/parse/parse_test.go

    		}
    	}
    }
    
    func TestErrorContextWithTreeCopy(t *testing.T) {
    	tree, err := New("root").Parse("{{if true}}{{end}}", "", "", make(map[string]*Tree), nil)
    	if err != nil {
    		t.Fatalf("unexpected tree parse failure: %v", err)
    	}
    	treeCopy := tree.Copy()
    	wantLocation, wantContext := tree.ErrorContext(tree.Root.Nodes[0])
    	gotLocation, gotContext := treeCopy.ErrorContext(treeCopy.Root.Nodes[0])
    	if wantLocation != gotLocation {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/networking/v1beta1/generated.proto

      //   matches /foo/bar/baz, but does not match /foo/barbaz).
      // * ImplementationSpecific: Interpretation of the Path matching is up to
      //   the IngressClass. Implementations can treat this as a separate PathType
      //   or treat it identically to Prefix or Exact path types.
      // Implementations are required to support all path types.
      // Defaults to ImplementationSpecific.
      optional string pathType = 3;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/DefaultSerializerRegistry.java

        // We are using a ConcurrentHashMap here because:
        //   - We don't want to use a Set with CLASS_COMPARATOR, since that would treat two classes with the same name originating from different classloaders as identical, allowing only one in the Set.
        //   - ConcurrentHashMap.newKeySet() isn't available on Java 6, yet, and that is where this code needs to run.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. cmd/endpoint.go

    		// As a special case make sure to trim the separator.
    
    		// NOTE: It is also perfectly fine for windows users to have a path
    		// without C:/ since at that point we treat it as relative path
    		// and obtain the full filesystem path as well. Providing C:/
    		// style is necessary to provide paths other than C:/,
    		// such as F:/, D:/ etc.
    		//
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. src/html/template/js_test.go

    		// to conclude that it could be a div binary op and treat it as
    		// such.
    		{jsCtxDivOp, "x"},
    		{jsCtxDivOp, "x "},
    		{jsCtxDivOp, "x\t"},
    		{jsCtxDivOp, "x\n"},
    		{jsCtxDivOp, "x\u2028"},
    		{jsCtxDivOp, "preturn"},
    		// Numbers precede div ops.
    		{jsCtxDivOp, "0"},
    		// Dots that are part of a number are div preceders.
    		{jsCtxDivOp, "0."},
    		// Some JS interpreters treat NBSP as a normal space, so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/resource/v1alpha2/types_swagger_doc_generated.go

    	"":               "ResourceClaimParameters defines resource requests for a ResourceClaim in an in-tree format understood by Kubernetes.",
    	"metadata":       "Standard object metadata",
    	"generatedFrom":  "If this object was created from some other resource, then this links back to that resource. This field is used to find the in-tree representation of the claim parameters when the parameter reference of the claim refers to some unknown type.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/networking/v1beta1/generated.proto

      //   matches /foo/bar/baz, but does not match /foo/barbaz).
      // * ImplementationSpecific: Interpretation of the Path matching is up to
      //   the IngressClass. Implementations can treat this as a separate PathType
      //   or treat it identically to Prefix or Exact path types.
      // Implementations are required to support all path types.
      // Defaults to ImplementationSpecific.
      optional string pathType = 3;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/cache/CacheInterceptor.kt

       */
      @Throws(IOException::class)
      private fun cacheWritingResponse(
        cacheRequest: CacheRequest?,
        response: Response,
      ): Response {
        // Some apps return a null body; for compatibility we treat that like a null cache request.
        if (cacheRequest == null) return response
        val cacheBodyUnbuffered = cacheRequest.body()
    
        val source = response.body.source()
        val cacheBody = cacheBodyUnbuffered.buffer()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Mar 22 07:09:21 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. operator/pkg/translate/translate.go

    	ContainerName string
    	// HelmSubdir is a mapping between a component name and the subdirectory of the component Chart.
    	HelmSubdir string
    	// ToHelmValuesTreeRoot is the tree root in values YAML files for the component.
    	ToHelmValuesTreeRoot string
    	// SkipReverseTranslate defines whether reverse translate of this component need to be skipped.
    	SkipReverseTranslate bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheEncryptionIntegrationTest.groovy

            EncryptionKind.ENV_VAR  | true      | false
        }
    
        private boolean isFoundInDirectory(File startDir, byte[] toFind) {
            try (Stream<Path> tree = Files.walk(startDir.toPath(), FileVisitOption.FOLLOW_LINKS)) {
                return tree.filter { it.toFile().file }
                    .anyMatch {
                        isSubArray(Files.readAllBytes(it), toFind)
                    }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top