Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 202 for S1 (0.1 sec)

  1. test/newinline.go

    		x = x + 1
    	}
    	foo() // ERROR "inlining call to s0.func1"
    	return x
    }
    
    func s1(x int) int { // ERROR "can inline s1"
    	foo := func() int { // ERROR "can inline s1.func1" "func literal does not escape"
    		return x
    	}
    	x = x + 1
    	return foo() // ERROR "inlining call to s1.func1"
    }
    
    func switchBreak(x, y int) int { // ERROR "can inline switchBreak"
    	var n int
    	switch x {
    	case 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

                             kXlaHasHostTransferAttrName, true));
        Node* s1 = Sequencer(
            b2.opts().WithName("F1_sequencer").WithControlInputs({recv1, send1}),
            "F1");
    
        NodeBuilder node_builder1("F1", "F1", lib_def.get());
        node_builder1.Input(a).Input(b);
        Node* call1 =
            b2.opts().WithControlInputs({s1, b}).FinalizeBuilder(&node_builder1);
    
        Node* key_constant2 =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  3. test/inline.go

    		x = x + 1
    	}
    	foo() // ERROR "inlining call to s0.func1"
    	return x
    }
    
    func s1(x int) int { // ERROR "can inline s1"
    	foo := func() int { // ERROR "can inline s1.func1" "func literal does not escape"
    		return x
    	}
    	x = x + 1
    	return foo() // ERROR "inlining call to s1.func1"
    }
    
    func switchBreak(x, y int) int { // ERROR "can inline switchBreak"
    	var n int
    	switch x {
    	case 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/TableCollectors.java

                state.put(
                    rowFunction.apply(input),
                    columnFunction.apply(input),
                    valueFunction.apply(input),
                    mergeFunction),
            (s1, s2) -> s1.combine(s2, mergeFunction),
            state -> state.toTable());
      }
    
      static <
              T extends @Nullable Object,
              R extends @Nullable Object,
              C extends @Nullable Object,
              V,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Mar 09 00:21:17 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. src/slices/iter_test.go

    	}
    
    	if want := [][]int{{1, 2}, {3, 4}}; !chunkEqual(got, want) {
    		t.Errorf("Chunk iteration did not stop, got %v, want %v", got, want)
    	}
    }
    
    func chunkEqual[Slice ~[]E, E comparable](s1, s2 []Slice) bool {
    	return EqualFunc(s1, s2, Equal[Slice])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:28:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparatorTest.groovy

    class DefaultVersionComparatorTest extends Specification {
    
        def versionParser = new VersionParser()
        def comparator = new DefaultVersionComparator()
    
        def compare(String s1, String s2) {
            return comparator.compare(new VersionInfo(versionParser.transform(s1)), new VersionInfo(versionParser.transform(s2)))
        }
    
        def "numeric parts are compared as numbers"() {
            expect:
            compare(smaller, larger) < 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/examples/mnist/ops_defs.py

        grad = gen_math_ops.tanh_grad(y, grad)
    
      broadcast_shape = tf.shape(y)
      input_value_shape = tf.shape(op.inputs[2])
      _, reduction_axes = tf.raw_ops.BroadcastGradientArgs(
          s0=broadcast_shape, s1=input_value_shape)
      updates_grad_reshaped = tf.reduce_sum(
          grad, axis=reduction_axes, keepdims=True)
      bias_grad = tf.reshape(updates_grad_reshaped, input_value_shape)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 20:23:51 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/core/io/TraverserUtilTest.java

            assertThat(traverser instanceof JarFileTraverser, is(true));
    
            final List<String> list = new ArrayList<String>();
            traverser.forEach((ResourceHandler) (path, is) -> list.add(path));
            list.sort((s1, s2) -> s1.compareTo(s2));
            assertThat(list.size(), is(2));
            assertThat(list.get(0), is("junit/textui/ResultPrinter.class"));
            assertThat(list.get(1), is("junit/textui/TestRunner.class"));
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MappingProviderTest.groovy

            return new MappingProvider(String, Providers.notDefined(), { "{$it}" })
        }
    
        @Override
        Class<String> type() {
            return String
        }
    
        @Override
        String someValue() {
            "{s1}"
        }
    
        @Override
        String someOtherValue() {
            "{other1}"
        }
    
        @Override
        String someOtherValue2() {
            "{other2}"
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:32 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // as different.  Two NULLs are equal.
    //
    //    * {ASSERT|EXPECT}_STREQ(s1, s2):     Tests that s1 == s2
    //    * {ASSERT|EXPECT}_STRNE(s1, s2):     Tests that s1 != s2
    //    * {ASSERT|EXPECT}_STRCASEEQ(s1, s2): Tests that s1 == s2, ignoring case
    //    * {ASSERT|EXPECT}_STRCASENE(s1, s2): Tests that s1 != s2, ignoring case
    //
    // For wide or narrow string objects, you can use the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
Back to top