Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 7,381 for _get (0.16 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescDefaultPropertyGetterSymbol.kt

        override val isDefault: Boolean
            get() = withValidityAssertion { true }
    
        override val isInline: Boolean
            get() = withValidityAssertion { false }
    
        override val isOverride: Boolean
            get() = withValidityAssertion { propertyDescriptor.isExplicitOverride }
    
        override val hasBody: Boolean
            get() = withValidityAssertion { false }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libtf/tests/object_test.cc

      child.Set(String("test2"), Integer(2));
      child.Set(Object::ParentKey(), parent);
      EXPECT_EQ(child.Get<Integer>(String("test1"))->get(), 1);
      EXPECT_EQ(child.Get<Integer>(String("test2"))->get(), 2);
      EXPECT_EQ(child.Get<Integer>(String("test3"))->get(), 3);
      ASSERT_FALSE(child.Get<Integer>(String("test4")).status().ok());
      TF_ASSERT_OK(child.Get(String("test3")).status());
    }
    
    TEST(ObjectTest, CallFunctionOnObject) {
      Object module;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 28 21:37:07 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/stream_executor/stream_executor.cc

      TF_RETURN_IF_ERROR(StatusFromTF_Status(c_status.get()));
      TF_RETURN_IF_ERROR(ValidateSPDevice(device));
    
      // Get Device Count
      int visible_device_count = 0;
      platform_fns_.get_device_count(&platform_, &visible_device_count,
                                     c_status.get());
      TF_RETURN_IF_ERROR(StatusFromTF_Status(c_status.get()));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

            activityHelper.login(createUser("testuser", new String[0]));
            assertEquals("action:LOGIN\tuser:testuser\tpermissions:-", localLogMsg.get());
    
            activityHelper.login(createUser("testuser", new String[] { "111", "222" }));
            assertEquals("action:LOGIN\tuser:testuser\tpermissions:111|222", localLogMsg.get());
        }
    
        public void test_loginFailure() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. test/fixedbugs/bug514.go

    func main() {
    	i := val
    	check(i)
    	mi := myInt{f: &valNotInHeap}
    	check(mi.Get())
    	ifv := iface(mi)
    	check(ifv.Get())
    	ifv = iface(&mi)
    	check(ifv.Get())
    	em := embed{&mi}
    	check(em.Get())
    	ifv = em
    	check(ifv.Get())
    	ifv = &em
    	check(ifv.Get())
    }
    
    func check(v int) {
    	if v != val {
    		panic(v)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 15:27:18 UTC 2022
    - 782 bytes
    - Viewed (0)
  6. tests/test_annotated.py

    app = FastAPI()
    
    
    @app.get("/default")
    async def default(foo: Annotated[str, Query()] = "foo"):
        return {"foo": foo}
    
    
    @app.get("/required")
    async def required(foo: Annotated[str, Query(min_length=1)]):
        return {"foo": foo}
    
    
    @app.get("/multiple")
    async def multiple(foo: Annotated[str, object(), Query(min_length=1)]):
        return {"foo": foo}
    
    
    @app.get("/unrelated")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_replaced.txt

    go mod edit -replace=example.com/x@v0.2.0=./x
    
    go get example.com/x
    go list -m example.com/x
    stdout '^example.com/x v0.2.0 '
    
    go get example.com/x@<v0.2.0
    go list -m example.com/x
    stdout '^example.com/x v0.1.0 '
    
    
    # The same should work with GOPROXY=off.
    
    env GOPROXY=off
    cp go.mod.orig go.mod
    
    go mod edit -replace=example.com/x=./x
    go get example.com/x
    
    go list -m example.com/x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      ASSERT_THAT(float_graph->tensors()->Get(float_op->inputs()->Get(0))->type(),
                  Eq(TensorType_FLOAT32));
      EXPECT_THAT(subgraph->tensors[op->inputs[0]].get()->type,
                  Eq(TensorType_INT8));
      ASSERT_THAT(float_graph->tensors()->Get(float_op->inputs()->Get(1))->type(),
                  Eq(TensorType_FLOAT32));
      EXPECT_THAT(subgraph->tensors[op->inputs[1]].get()->type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  9. tests/test_dependency_cache.py

        return count
    
    
    @app.get("/counter/")
    async def get_counter(count: int = Depends(dep_counter)):
        return {"counter": count}
    
    
    @app.get("/sub-counter/")
    async def get_sub_counter(
        subcount: int = Depends(super_dep), count: int = Depends(dep_counter)
    ):
        return {"counter": count, "subcounter": subcount}
    
    
    @app.get("/sub-counter-no-cache/")
    async def get_sub_counter_no_cache(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Aug 23 13:30:24 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/suggest/settings/AnalyzerSettings.java

            final Set<String> analyzerNames = analyzerMap.get(analyzerSettingsIndexName);
            final String analyzerName;
            if (StringUtil.isNotBlank(field) && fieldAnalyzerMapping.containsKey(field)
                    && fieldAnalyzerMapping.get(field).readingAnalyzer != null) {
                analyzerName = fieldAnalyzerMapping.get(field).readingAnalyzer;
            } else {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top