Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 154 for value6 (0.11 sec)

  1. src/internal/cpu/cpu.go

    		}
    		i = indexByte(field, '=')
    		if i < 0 {
    			print("GODEBUG: no value specified for \"", field, "\"\n")
    			continue
    		}
    		key, value := field[4:i], field[i+1:] // e.g. "SSE2", "on"
    
    		var enable bool
    		switch value {
    		case "on":
    			enable = true
    		case "off":
    			enable = false
    		default:
    			print("GODEBUG: value \"", value, "\" not supported for cpu option \"", key, "\"\n")
    			continue field
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/empty-value-attr.pbtxt

          attr {
            key: "dtype"
            value {
              type: DT_FLOAT
            }
          }
          attr {
            key: "value"
            value {
              tensor {
                dtype: DT_FLOAT
                tensor_shape {
                }
                float_val: 7
              }
            }
          }
        }
        ret {
          key: "constant"
          value: "X:output:0"
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/HeadersJvmTest.kt

            .add("\tkey\t:\tvalue\t") // '\t' also counts as whitespace
            .add("ping:  pong  ") // Value whitespace is trimmed.
            .add("kit:kat") // Space after colon is not required.
            .build()
        assertThat(headers.values("foo")).containsExactly("bar", "baz", "bak")
        assertThat(headers.values("key")).containsExactly("value")
        assertThat(headers.values("ping")).containsExactly("pong")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/ConfigureByMapActionTest.groovy

            when:
            action(prop: 'value').execute(obj)
    
            then:
            obj.prop == "value"
    
            when:
            action(method: 'value2').execute(obj)
    
            then:
            obj.prop == 'value2'
        }
    
        def canConfigureAndValidateObjectUsingMap() {
            given:
            Bean obj = new Bean()
    
            when:
            action(prop: 'value', ['foo']).execute(obj)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:07 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  5. tensorflow/cc/experimental/libtf/impl/string.cc

    using StringTable = std::unordered_set<std::string>;
    
    namespace tf {
    namespace libtf {
    namespace impl {
    
    String::String(const char* s) {
      static StringTable* table = new StringTable;
      value_ = &*table->insert(s).first;
    }
    
    }  // namespace impl
    }  // namespace libtf
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 28 21:37:07 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  6. pkg/apis/apps/v1/conversion.go

    	if err := autoConvert_v1_DaemonSet_To_apps_DaemonSet(in, out, s); err != nil {
    		return err
    	}
    	if value, ok := in.Annotations[appsv1.DeprecatedTemplateGeneration]; ok {
    		if value64, err := strconv.ParseInt(value, 10, 64); err != nil {
    			return err
    		} else {
    			out.Spec.TemplateGeneration = value64
    			out.Annotations = deepCopyStringMap(out.Annotations)
    			delete(out.Annotations, appsv1.DeprecatedTemplateGeneration)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:36:24 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inputs/hello.yaml.1.values.gen.yaml

    Jingming Guo <******@****.***> 1715374912 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inputs/hello.yaml.10.values.gen.yaml

    Jingming Guo <******@****.***> 1715374912 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. README.md

        "contentIndexName",
        "contentTypeName");
    suggester.indexer().indexFromDocument(reader, 2, 100).getResponse();
    ```
    
    ### Add suggest document from queryLog
    
    ```java
    QueryLog queryLog = new QueryLog("field1:value1", null);
    suggester.indexer().indexFromQueryLog(queryLog);
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Jan 19 03:33:49 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/attributes/TestSuiteName.java

    import org.gradle.api.Incubating;
    import org.gradle.api.Named;
    
    /**
     * Attribute to define the test suite name.
     * <p>
     * This attribute is usually found on variants that have the {@link Category} attribute valued at {@link Category#VERIFICATION verification}.
     *
     * @since 7.4
     */
    @Incubating
    public interface TestSuiteName extends Named {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 23 18:49:28 UTC 2021
    - 1.1K bytes
    - Viewed (0)
Back to top