Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,418 for SIMPLE (0.12 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/ResolvedGraphDependency.java

        /**
         * Returns the simple id of the selected component, as per {@link ResolvedGraphComponent#getResultId()}.
         */
        @Nullable
        Long getSelected();
    
        /**
         * Not null only when failure is not null.
         */
        @Nullable
        ComponentSelectionReason getReason();
    
        boolean isConstraint();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. cmd/import-boss/testdata/simple-fwd/aaa/.import-restrictions

    rules:
      - selectorRegexp: k8s[.]io
        allowedPrefixes:
          - k8s.io/kubernetes/cmd/import-boss/testdata/simple-fwd/allowed
        forbiddenPrefixes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 222 bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/branchelim.go

    	if dom.Kind != BlockIf || dom.Likely != BranchUnknown {
    		return false
    	}
    	var simple, post *Block
    	for i := range dom.Succs {
    		bb, other := dom.Succs[i].Block(), dom.Succs[i^1].Block()
    		if isLeafPlain(bb) && bb.Succs[0].Block() == other {
    			simple = bb
    			post = other
    			break
    		}
    	}
    	if simple == nil || len(post.Preds) != 2 || post == dom {
    		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)
  4. src/cmd/go/testdata/script/generate.txt

    [short] skip
    
    # Install an echo command because Windows doesn't have it.
    env GOBIN=$WORK/tmp/bin
    go install echo.go
    env PATH=$GOBIN${:}$PATH
    
    # Test go generate handles a simple command
    go generate ./generate/simple.go
    stdout 'Success'
    
    # Test go generate handles a command alias
    go generate './generate/alias.go'
    stdout 'Now is the time for all good men'
    
    # Test go generate's variable substitution
    go generate './generate/substitution.go'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 03:24:24 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. hack/run-prometheus-on-etcd-scrapes.sh

    # limitations under the License.
    
    # Unpacks a tarfile of etcd scrapes and runs a simple web server exposing it
    # and a Prometheus server scraping that simple web server.
    # The simple web server listens on port 9091.
    # The Prometheus server is run in a container and looks for the
    # simple web server at the host's first global IPv4 address.
    
    # Usage: $0 scrapes_tar_pathname
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 08 20:28:05 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/gateway-secrets-validation.yaml

        istio: ingressgateway # use istio default ingress gateway, so we expect the credential in istio-system
      servers:
        - port:
            number: 443
            name: https
            protocol: HTTPS
          tls:
            mode: SIMPLE
            credentialName: "invalid-key" # wrong key names, should have one error
          hosts:
            - "httpbin.example.com"
    ---
    apiVersion: v1
    data:
      tls.cert: aHVzaCBodXNoIGh1c2gK
    kind: Secret
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 17 11:51:20 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/scheme_test.go

    		}
    		// clearing TypeMeta is a function of the scheme, which we do not test here (ConvertToVersion
    		// does not automatically clear TypeMeta anymore).
    		simple.TypeMeta = runtime.TypeMeta{Kind: "Simple", APIVersion: externalGV.String()}
    		if e, a := simple, obj3; !reflect.DeepEqual(e, a) {
    			t.Errorf("Expected:\n %#v,\n Got:\n %#v", e, a)
    		}
    
    		obj4, err := runtime.Decode(jsonserializer, data)
    		if err != nil {
    			t.Fatal(err)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/files/file/groovy/build.gradle

    import java.nio.file.Paths
    
    // tag::simple-params[]
    // Using a relative path
    File configFile = file('src/config.xml')
    
    // Using an absolute path
    configFile = file(configFile.absolutePath)
    
    // Using a File object with a relative path
    configFile = file(new File('src/config.xml'))
    
    // Using a java.nio.file.Path object with a relative path
    configFile = file(Paths.get('src', 'config.xml'))
    
    // Using an absolute java.nio.file.Path object
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 551 bytes
    - Viewed (0)
  9. tests/integration/security/filebased_tls_origination/egress_gateway_origination_test.go

    				//      --> externalServer(443 with only Simple TLS used and client cert is not verified)
    				"Mutual TLS origination from egress gateway to https endpoint": {
    					destinationRuleMode: "MUTUAL",
    					code:                http.StatusOK,
    					gateway:             true,
    					fakeRootCert:        false,
    				},
    				// 2. Simple TLS case:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. tests/integration/security/testdata/reachability/automtls-passthrough.yaml.tmpl

    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: passthrough
    spec:
      host: "*"
      trafficPolicy:
        loadBalancer:
          simple: PASSTHROUGH
    ---
    # Apply a local policy to the system namespace to turn this off
    # Otherwise, the eastwest gateway will be impacted
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: "eastwest-opt-out"
      annotations:
        test-suite: "beta-mtls-on"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 06 18:43:28 UTC 2022
    - 530 bytes
    - Viewed (0)
Back to top