Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 4,493 for value$ (0.23 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsentity/BsLabelType.java

            checkSpecifiedProperty("value");
            return convertEmptyToNull(value);
        }
    
        public void setValue(String value) {
            registerModifiedProperty("value");
            this.value = value;
        }
    
        public String getVirtualHost() {
            checkSpecifiedProperty("virtualHost");
            return convertEmptyToNull(virtualHost);
        }
    
        public void setVirtualHost(String value) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/parse_example.pbtxt

        value {
          type: DT_STRING
        }
      }
      attr {
        key: "value"
        value {
          tensor {
            dtype: DT_STRING
            tensor_shape {
            }
            string_val: "value"
          }
        }
      }
    }
    node {
      name: "Const_2"
      op: "Const"
      attr {
        key: "dtype"
        value {
          type: DT_INT64
        }
      }
      attr {
        key: "value"
        value {
          tensor {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/util/ParameterUtilTest.java

            String value;
            String expect;
    
            value = null;
            expect = "";
            assertEquals(expect, ParameterUtil.encrypt(value));
    
            value = "";
            expect = "";
            assertEquals(expect, ParameterUtil.encrypt(value));
    
            value = "\n";
            expect = "";
            assertEquals(expect, ParameterUtil.encrypt(value));
    
            value = "=";
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ioctl_signed.go

    // for those, IoctlRetInt should be used instead of this function.
    func IoctlGetInt(fd int, req int) (int, error) {
    	var value int
    	err := ioctlPtr(fd, req, unsafe.Pointer(&value))
    	return value, err
    }
    
    func IoctlGetWinsize(fd int, req int) (*Winsize, error) {
    	var value Winsize
    	err := ioctlPtr(fd, req, unsafe.Pointer(&value))
    	return &value, err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ioctl_unsigned.go

    // for those, IoctlRetInt should be used instead of this function.
    func IoctlGetInt(fd int, req uint) (int, error) {
    	var value int
    	err := ioctlPtr(fd, req, unsafe.Pointer(&value))
    	return value, err
    }
    
    func IoctlGetWinsize(fd int, req uint) (*Winsize, error) {
    	var value Winsize
    	err := ioctlPtr(fd, req, unsafe.Pointer(&value))
    	return &value, err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/FilteringProvider.java

                ExecutionTimeValue<? extends T> value = provider.calculateExecutionTimeValue();
                if (value.isMissing()) {
                    return value;
                }
                if (value.hasChangingContent()) {
                    // Need the value contents in order to transform it to produce the value of this provider,
                    // so if the value or its contents are built by tasks, the value of this provider is also built by tasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/KtContractDescriptionElementRenderer.kt

        printer.appendHeader(value::class) {
            appendProperty(value::parameterSymbol, ::renderKaParameterSymbol, endWithNewLine)
        }
    
    private fun Context.renderKaContractBooleanExpression(value: KaContractBooleanExpression, endWithNewLine: Boolean = true): Unit =
        printer.appendHeader(value::class) {
            when (value) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/core/v1/containerstatus.go

    	for i := range values {
    		if values[i] == nil {
    			panic("nil value passed to WithVolumeMounts")
    		}
    		b.VolumeMounts = append(b.VolumeMounts, *values[i])
    	}
    	return b
    }
    
    // WithUser sets the User field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/modelRules/basicRuleSourcePlugin/tests/basicRuleSourcePlugin-model-task.out

              | Value:  	null
              | Creator: 	PersonRules#person(Person)
        + firstName
              | Type:   	java.lang.String
              | Value:  	John
              | Creator: 	PersonRules#person(Person)
        + homeDirectory
              | Type:   	java.io.File
              | Value:  	null
              | Creator: 	PersonRules#person(Person)
        + id
              | Type:   	java.lang.Long
              | Value:  	null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 15:10:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/Encoder.java

         */
        void writeSmallInt(int value) throws IOException;
    
        /**
         * Writes a short value.
         *
         * @since 8.7
         */
        void writeShort(short value) throws IOException;
    
        /**
         * Writes a float value.
         *
         * @since 8.7
         */
        void writeFloat(float value) throws IOException;
    
        /**
         * Writes a double value.
         *
         * @since 8.7
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top