Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,429 for somme (0.07 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    //	  extraVolumes:
    //	  - name: "some-volume"
    //	    hostPath: "/etc/some-path"
    //	    mountPath: "/etc/some-pod-path"
    //	    readOnly: false
    //	    pathType: File
    //	scheduler:
    //	  extraArgs:
    //	    address: "10.100.0.1"
    //	  extraVolumes:
    //	  - name: "some-volume"
    //	    hostPath: "/etc/some-path"
    //	    mountPath: "/etc/some-pod-path"
    //	    readOnly: false
    //	    pathType: File
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r410/CppModelCrossVersionSpec.groovy

            project.mainComponent.baseName == 'some-app'
            project.mainComponent.binaries.size() == 2
    
            def debugBinary = project.mainComponent.binaries[0]
            debugBinary instanceof CppExecutable
            debugBinary.name == 'mainDebug'
            debugBinary.variantName == 'debug'
            debugBinary.baseName == 'some-app'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  3. src/net/http/cookiejar/jar_test.go

    			{"http://www.host.test/some", ""},
    			{"http://www.host.test/some/", ""},
    			{"http://www.host.test/some/path", "A=a"},
    			{"http://www.host.test/some/paths", ""},
    			{"http://www.host.test/some/path/foo", "A=a"},
    			{"http://www.host.test/some/path/foo/", "A=a"},
    		},
    	},
    	{
    		"Implicit path #1: path is a directory.",
    		"http://www.host.test/some/path/",
    		[]string{"A=a"},
    		"A=a",
    		[]query{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheStateStore.kt

        /**
         * Loads some value from zero or more state files.
         */
        fun <T : Any> useForStateLoad(action: (ConfigurationCacheRepository.Layout) -> T): T
    
        /**
         * Loads some value from a specific state file.
         */
        fun <T : Any> useForStateLoad(stateType: StateType, action: (ConfigurationCacheStateFile) -> T): T
    
        /**
         * Writes some value to zero or more state files.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route_test.go

    	}
    }
    
    var virtualServiceWithSubset = &networking.VirtualService{
    	Hosts:    []string{},
    	Gateways: []string{"some-gateway"},
    	Http: []*networking.HTTPRoute{
    		{
    			Route: []*networking.HTTPRouteDestination{
    				{
    					Destination: &networking.Destination{
    						Subset: "some-subset",
    						Host:   "*.example.org",
    						Port: &networking.PortSelector{
    							Number: 65000,
    						},
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

        File jarFile = new File("base/some.jar");
        Manifest manifest = manifestClasspath("file:the^file.jar");
        assertThat(ClassPath.getClassPathFromManifest(jarFile, manifest))
            .containsExactly(fullpath("base/the^file.jar"));
      }
    
      public void testGetClassPathFromManifest_relativeDirectory() throws IOException {
        File jarFile = new File("base/some.jar");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 26 14:02:27 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/internal/daemon/clientinput/StdInStreamTest.groovy

            def stream = new StdInStream(dispatch)
            def text = "some text"
            def bytes = text.bytes
    
            when:
            async {
                start {
                    def buffer = new byte[5]
                    def nread = stream.read(buffer)
                    assert nread == 5
                    assert new String(buffer, 0, nread) == "some "
    
                    nread = stream.read(buffer)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPsiSymbol.kt

    import com.intellij.psi.PsiElement
    import org.jetbrains.kotlin.analysis.api.symbols.KaSymbolOrigin
    import org.jetbrains.kotlin.fir.symbols.FirBasedSymbol
    
    /**
     * A [KaFirSymbol] that is backed by some [PsiElement] and builds [firSymbol] lazily (by convention), allowing some properties to be
     * calculated without the need to build a [firSymbol].
     */
    internal interface KaFirPsiSymbol<P : PsiElement, out S : FirBasedSymbol<*>> : KaFirSymbol<S> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 881 bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    	var tests = []struct {
    		u        []string
    		g        []string
    		f        *field.Path
    		expected bool
    	}{
    		{[]string{"some usage"}, []string{"some group"}, nil, false},                       // groups doesn't makes sense if usage authentication
    		{[]string{"authentication"}, []string{"some group"}, nil, false},                   // group not supported
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  10. tests/integration/iop-ambient-test-defaults.yaml

    # This file provides some defaults for integration testing.
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: install
    spec:
      profile: ambient
      components:
        ingressGateways:
          - name: istio-ingressgateway
            enabled: true
      values:
        cni:
          ambient:
            # Some of the tests require DNS capture
            # For that, DNS capture must be enabled in the CNI
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 952 bytes
    - Viewed (0)
Back to top