Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,261 for multis (0.31 sec)

  1. src/net/http/routing_index.go

    func (idx *routingIndex) addPattern(pat *pattern) {
    	if pat.lastSegment().multi {
    		idx.multis = append(idx.multis, pat)
    	} else {
    		if idx.segments == nil {
    			idx.segments = map[routingIndexKey][]*pattern{}
    		}
    		for pos, seg := range pat.segments {
    			key := routingIndexKey{pos: pos, s: ""}
    			if !seg.wild {
    				key.s = seg.s
    			}
    			idx.segments[key] = append(idx.segments[key], pat)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 19 18:35:22 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. src/net/http/routing_index_test.go

    			if len(got) != 0 {
    				b.Fatalf("got %d conflicts, want 0", len(got))
    			}
    			idx.addPattern(p)
    		}
    		if i == 0 {
    			// Confirm that all the multis ended up where they belong.
    			if g, w := len(idx.multis), nMultis; g != w {
    				b.Fatalf("got %d multis, want %d", g, w)
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. platforms/documentation/docs-asciidoctor-extensions-base/src/main/resources/multi-language-samples.css

        -webkit-filter: grayscale(1);
        opacity: 0.7;
    }
    
    .multi-language-selector .language-option.selected {
        background-color: #f7f7f8;
        color: #02303a;
        filter: none;
        -webkit-filter: none;
        opacity: 1;
    }
    
    .multi-language-text.hidden,
    .multi-language-selector ~ .multi-language-sample.hidden {
        display: none;
    }
    
    .multi-language-sample {
        border-radius: 0 0 4px 4px;
    }
    
    .dark-mode {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:27:34 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs-asciidoctor-extensions-base/src/main/resources/multi-language-samples.js

              !sampleCollection[0].previousElementSibling.classList.contains(
                "multi-language-selector"
              ))
          ) {
            var languageSelectorFragment = document.createDocumentFragment();
            var multiLanguageSelectorElement = document.createElement("div");
            multiLanguageSelectorElement.classList.add("multi-language-selector");
            languageSelectorFragment.appendChild(multiLanguageSelectorElement);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. hack/testdata/multi-resource-1.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: test-pod
      namespace: multi-resource-ns
      labels:
        name: test-pod-label
    spec:
      containers:
      - name: kubernetes-pause
        image: registry.k8s.io/pause:3.10
    ---
    apiVersion: v1
    kind: Namespace
    metadata:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 462 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/multi-project-standards.png

    multi-project-standards.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:03:53 UTC 2024
    - 90.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/multi-project-structure.png

    multi-project-structure.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 29 01:30:02 UTC 2023
    - 81.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/readme-templates/multi-common-summary.adoc.template

    == Next steps
    
    When your project grows, you might be interested in more details how to configure JVM projects, structuring multi-project builds and dependency management:
    
     - link:{userManualPath}/building_java_projects.html[Building Java & JVM projects]
     - link:{userManualPath}/multi_project_builds.html[Working with multi-project builds]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 718 bytes
    - Viewed (0)
  9. src/net/http/server.go

    		return false
    	}
    	// We can't directly implement the definition (empty match for multi
    	// wildcard) because we don't record a match for anonymous multis.
    
    	// If there is no multi, the match is exact.
    	if !n.pattern.lastSegment().multi {
    		return true
    	}
    
    	// If the path doesn't end in a trailing slash, then the multi match
    	// is non-empty.
    	if len(path) > 0 && path[len(path)-1] != '/' {
    		return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. src/io/multi.go

    Russ Cox <******@****.***> 1652906780 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 15:49:05 UTC 2022
    - 3.3K bytes
    - Viewed (0)
Back to top