Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 67 for A1value (0.1 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskWiringIntegrationTest.groovy

                    inFile = file("in.txt")
                    outFile = layout.buildDirectory.file("out.txt")
                }
                task transformer(type: InputTask) {
                    inValue = producer.outFile.map { f -> f.asFile.text as Integer }.map { i -> i + 2 }
                    outFile = file("out.txt")
                }
            """
            def input = file("in.txt")
            def output = file("out.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. pkg/test/framework/components/environment/kube/fake.go

    )
    
    var _ resource.Environment = FakeEnvironment{}
    
    // FakeEnvironment for testing.
    type FakeEnvironment struct {
    	Name        string
    	NumClusters int
    	IDValue     string
    }
    
    func (f FakeEnvironment) ID() resource.ID {
    	return resource.FakeID(f.IDValue)
    }
    
    func (f FakeEnvironment) IsMultiCluster() bool {
    	return false
    }
    
    func (f FakeEnvironment) IsMultiNetwork() bool {
    	return false
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.yaml

            uid: 1
        volumeMounts:
        - mountPath: mountPathValue
          name: nameValue
          readOnly: true
          recursiveReadOnly: recursiveReadOnlyValue
      hostIP: hostIPValue
      hostIPs:
      - ip: ipValue
      initContainerStatuses:
      - allocatedResources:
          allocatedResourcesKey: "0"
        containerID: containerIDValue
        image: imageValue
        imageID: imageIDValue
        lastState:
          running:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.json

        "reason": "reasonValue",
        "nominatedNodeName": "nominatedNodeNameValue",
        "hostIP": "hostIPValue",
        "hostIPs": [
          {
            "ip": "ipValue"
          }
        ],
        "podIP": "podIPValue",
        "podIPs": [
          {
            "ip": "ipValue"
          }
        ],
        "startTime": "2007-01-01T01:01:01Z",
        "initContainerStatuses": [
          {
            "name": "nameValue",
            "state": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/api.go

    func (tv TypeAndValue) IsBuiltin() bool {
    	return tv.mode == builtin
    }
    
    // IsValue reports whether the corresponding expression is a value.
    // Builtins are not considered values. Constant values have a non-
    // nil Value.
    func (tv TypeAndValue) IsValue() bool {
    	switch tv.mode {
    	case constant_, variable, mapindex, value, nilvalue, commaok, commaerr:
    		return true
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. pkg/test/framework/suite_test.go

    		g := NewWithT(t)
    		var ref OtherInterface
    		tracked := &resource.FakeResource{IDValue: "1"}
    		err := act(&ref, tracked)
    		g.Expect(err).To(BeNil())
    		g.Expect(tracked).To(Equal(ref))
    	})
    	t.Run("slice reference", func(t *testing.T) {
    		g := NewWithT(t)
    		existing := &resource.FakeResource{IDValue: "1"}
    		tracked := &resource.FakeResource{IDValue: "2"}
    		ref := []OtherInterface{existing}
    		err := act(&ref, tracked)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. src/go/types/builtins.go

    					if constant.Compare(a.val, op, x.val) {
    						*x = *a
    					}
    				} else {
    					x.mode = value
    				}
    			}
    		}
    
    		// If nargs == 1, make sure x.mode is either a value or a constant.
    		if x.mode != constant_ {
    			x.mode = value
    			// A value must not be untyped.
    			check.assignment(x, &emptyInterface, "argument to built-in "+bin.name)
    			if x.mode == invalid {
    				return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/builtins.go

    					if constant.Compare(a.val, op, x.val) {
    						*x = *a
    					}
    				} else {
    					x.mode = value
    				}
    			}
    		}
    
    		// If nargs == 1, make sure x.mode is either a value or a constant.
    		if x.mode != constant_ {
    			x.mode = value
    			// A value must not be untyped.
    			check.assignment(x, &emptyInterface, "argument to built-in "+bin.name)
    			if x.mode == invalid {
    				return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.yaml

      hostAliases:
      - hostnames:
        - hostnamesValue
        ip: ipValue
      hostIPC: true
      hostNetwork: true
      hostPID: true
      hostUsers: true
      hostname: hostnameValue
      imagePullSecrets:
      - name: nameValue
      initContainers:
      - args:
        - argsValue
        command:
        - commandValue
        env:
        - name: nameValue
          value: valueValue
          valueFrom:
            configMapKeyRef:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.json

        "reason": "reasonValue",
        "nominatedNodeName": "nominatedNodeNameValue",
        "hostIP": "hostIPValue",
        "hostIPs": [
          {
            "ip": "ipValue"
          }
        ],
        "podIP": "podIPValue",
        "podIPs": [
          {
            "ip": "ipValue"
          }
        ],
        "startTime": "2007-01-01T01:01:01Z",
        "initContainerStatuses": [
          {
            "name": "nameValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 52.6K bytes
    - Viewed (0)
Back to top