Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for value$PATH (0.36 sec)

  1. operator/pkg/util/path.go

    // IsKVPathElement report whether pe is a key/value path element.
    func IsKVPathElement(pe string) bool {
    	pe, ok := RemoveBrackets(pe)
    	if !ok {
    		return false
    	}
    
    	kv := splitEscaped(pe, kvSeparatorRune)
    	if len(kv) != 2 || len(kv[0]) == 0 || len(kv[1]) == 0 {
    		return false
    	}
    	return IsValidPathElement(kv[0])
    }
    
    // IsVPathElement report whether pe is a value path element.
    func IsVPathElement(pe string) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/input/pilot_override_kubernetes.yaml

            # Base component only allows overlays field.
            overlays:
              - kind: ServiceAccount
                name: istio-reader-service-account
                patches:
                  # Select list item by value
                  - path: spec.automountServiceAccountToken
                    value: false
    
        pilot:
          enabled: true
          namespace: istio-control
          k8s:
            resources:
              requests:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/integtests/ApplicationIntegrationSpec.groovy

            def testValue2 = OperatingSystem.current().windows ? 'some value$PATH' : 'some value\\\\$PATH'
            def testValue3 = 'some value%PATH%'
            file("build.gradle") << '''
                application.applicationDefaultJvmArgs = [
                    '-DtestValue=value',
                    '-DtestValue2=some value$PATH',
                    '-DtestValue3=some value%PATH%',
                ]
            '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/mesh.yaml

    kind: HTTPRoute
    metadata:
      name: header
      namespace: default
    spec:
      parentRefs:
      - group: ""
        kind: Service
        name: echo
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /path
        filters:
        - type: RequestHeaderModifier
          requestHeaderModifier:
            add:
            - name: my-added-header
              value: added-value
        backendRefs:
        - name: echo
          port: 80
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. tensorflow/cc/experimental/libtf/tests/generate_testdata.py

    
    def get_model(name):
      if name not in TEST_MODELS:
        raise ValueError("Model name '{}' not in TEST_MODELS")
      return TEST_MODELS[name]()
    
    
    def main(unused_argv):
    
      model = get_model(MODEL_NAME.value)
      path = os.path.join(TESTDATA_PATH.value, MODEL_NAME.value)
      saved_model.save(model, path)
    
    
    if __name__ == "__main__":
      v2_compat.enable_v2_behavior()
      flags.mark_flag_as_required("path")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 15 16:58:38 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/util/find_errorline_utils.go

    	// Path for ConfigPatch in envoyFilter
    	// Required parameters: envoyFilter config patch index
    	EnvoyFilterConfigPath = "{.spec.configPatches[%d].patch.value}"
    
    	// Path for selector in telemetry.
    	// Required parameters: selector label.
    	TelemetrySelector = "{.spec.selector.matchLabels.%s}"
    )
    
    // ErrorLine returns the line number of the input path key in the resource
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:05 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. operator/pkg/tpath/struct.go

    	kind := reflect.TypeOf(node).Kind()
    	var structElems reflect.Value
    
    	switch kind {
    	case reflect.Map:
    		if path[0] == "" {
    			return nil, false, fmt.Errorf("getFromStructPath path %s, empty map key value", path)
    		}
    		mapVal := val.MapIndex(reflect.ValueOf(path[0]))
    		if !mapVal.IsValid() {
    			return nil, false, fmt.Errorf("getFromStructPath path %s, path does not exist", path)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/eclipse/EclipseClasspathFixture.groovy

            }
    
            void assertIsDeployedTo(String path) {
                assert entry.attributes
                assert entry.attributes[0].find { it.@name == 'org.eclipse.jst.component.dependency' && it.@value == path }
            }
    
            void assertIsExcludedFromDeployment() {
                assert entry.attributes
                assert entry.attributes[0].find { it.@name == 'org.eclipse.jst.component.nondependency' && it.@value == '' }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/text/DefaultTextReportBuilderTest.groovy

            def file = new File("thing")
            fileResolver.resolveForDisplay(file) >> "path/thing"
    
            when:
            builder.item(file)
    
            then:
            output.value == """path/thing
    """
        }
    
        def "formats item with title and string value"() {
            when:
            builder.item("the title", "the value")
    
            then:
            output.value == """the title: the value
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r214/ToolingApiEclipseModelWtpClasspathAttributesCrossVersionSpec.groovy

            return !entry.classpathAttributes.find { it.name == 'org.eclipse.jst.component.nondependency' } &&
                entry.classpathAttributes.find { it.name == 'org.eclipse.jst.component.dependency'  && it.value == path }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top