Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 717 for getValve (0.28 sec)

  1. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/EnumBuildOption.java

                    String value = options.option(config.getLongOption()).getValue();
                    applyTo(value, settings, Origin.forCommandLine(config.getLongOption()));
                }
            }
        }
    
        private void applyTo(String value, T settings, Origin origin) {
            applyTo(getValue(value), settings, origin);
        }
    
        private E getValue(String value) {
            E enumValue = null;
            if (value != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/value_types_json.go

    		return json.Marshal(this.IntVal.GetValue())
    	}
    	return json.Marshal(this.StrVal.GetValue())
    }
    
    func (this *IntOrString) UnmarshalJSONPB(_ *github_com_golang_protobuf_jsonpb.Unmarshaler, value []byte) error {
    	return this.UnmarshalJSON(value)
    }
    
    func (this *IntOrString) ToKubernetes() intstr.IntOrString {
    	if this.IntVal != nil {
    		return intstr.FromInt32(this.GetIntVal().GetValue())
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/testFixtures/groovy/org/gradle/internal/logging/text/TestLineChoppingStyledTextOutput.groovy

        @Override
        String toString() {
            delegate.toString()
        }
    
        /**
         * @see TestStyledTextOutput#getValue()
         */
        String getValue() {
            return delegate.getValue()
        }
    
        @Override
        protected void doLineText(CharSequence text) {
            delegate.text(text)
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/JdkBackedImmutableBiMap.java

          V oldValue = forwardDelegate.putIfAbsent(e.getKey(), e.getValue());
          if (oldValue != null) {
            throw conflictException("key", e.getKey() + "=" + oldValue, entryArray[i]);
          }
          K oldKey = backwardDelegate.putIfAbsent(e.getValue(), e.getKey());
          if (oldKey != null) {
            throw conflictException("value", oldKey + "=" + e.getValue(), entryArray[i]);
          }
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/internal/MultilineStringsJavadocOptionFileOptionTest.groovy

            linksOption.getValue().add(extDocUrl)
    
            when:
            linksOption.writeCollectionValue(writerContextMock)
    
            then:
            1 * writerContextMock.writeMultilineValuesOption(optionName, [extDocUrl])
        }
    
        def writeMultipleValues() {
            final String docUrl1 = "docUrl1"
            final String docUrl2 = "docUrl2"
    
            linksOption.getValue().add(docUrl1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/TrivialChangeDetector.java

                    return false;
                }
            }
            return true;
        }
    
        private boolean compareTrivialEntries(ChangeVisitor visitor, Map.Entry<String, S> previousEntry, Map.Entry<String, S> currentEntry, String propertyTitle) {
            S previous = previousEntry.getValue();
            S current = currentEntry.getValue();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. test/chan/select.go

    // Test simple select.
    
    package main
    
    var counter uint
    var shift uint
    
    func GetValue() uint {
    	counter++
    	return 1 << shift
    }
    
    func Send(a, b chan uint) int {
    	var i int
    
    LOOP:
    	for {
    		select {
    		case a <- GetValue():
    			i++
    			a = nil
    		case b <- GetValue():
    			i++
    			b = nil
    		default:
    			break LOOP
    		}
    		shift++
    	}
    	return i
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:44:02 UTC 2012
    - 913 bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/testFixtures/groovy/org/gradle/language/fixtures/HelperProcessorFixture.groovy

            try {
                writer.write("class " + className + " {");
                writer.write("    String getValue() { return \\"");
                String messageFromOptions = options.get("message");
                if (messageFromOptions == null) {
                    writer.write(HelperUtil.getValue() + "${suffix}");
                } else {
                    writer.write(messageFromOptions);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_assignment.cc

            // Assign device to ops with device attribute that is empty.
            if (device_attr.getValue().empty()) {
              op->setAttr(kDeviceAttr,
                          builder.getStringAttr(func_device_attr.getValue()));
            }
          } else if (op->getDialect() == tf) {
            // Assign device to all ops in Tensorflow dialect that do not have
            // device attribute.
            op->setAttr(kDeviceAttr,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/build/ExecutionResult.java

    public abstract class ExecutionResult<T> {
        private static final Success<Void> SUCCESS = new Success<Void>() {
            @Override
            public Void getValue() {
                return null;
            }
        };
    
        /**
         * Returns the value, if available.
         */
        public abstract T getValue();
    
        /**
         * Returns the failures in this result, or an empty list if the operation was successful.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 03 03:31:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top