Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 4,039 for 3$ (0.02 sec)

  1. tools/istio-iptables/pkg/capture/testdata/dns-uid-gid.golden

    iptables -t nat -A ISTIO_OUTPUT -o lo ! -d 127.0.0.1/32 -p tcp -m multiport ! --dports 53,15008 -m owner --uid-owner 3 -j ISTIO_IN_REDIRECT
    iptables -t nat -A ISTIO_OUTPUT -o lo -p tcp ! --dport 53 -m owner ! --uid-owner 3 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -m owner --uid-owner 3 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -o lo ! -d 127.0.0.1/32 -p tcp -m multiport ! --dports 53,15008 -m owner --uid-owner 4 -j ISTIO_IN_REDIRECT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/tensorflow/tests/tf_to_quant_4bit.mlir

      %1 = "quantfork.qcast"(%0) : (tensor<8xf32>) -> tensor<8x!quant.uniform<i4:f32, 1.000000e+00:-8>>
      func.return %1 : tensor<8x!quant.uniform<i4:f32, 1.000000e+00:-8>>
    
    // CHECK:  %0 = "tf.FakeQuantWithMinMaxVars"(%arg0, %cst, %cst_0) <{narrow_range = false, num_bits = 3 : i64}>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/testdata/ctl_test.go

    	ret := 0
    	switch a {
    	case 5:
    		ret += 5
    	case 4:
    		ret += 4
    	case 3:
    		ret += 3
    	case 2:
    		ret += 2
    	case 1:
    		ret += 1
    	}
    	return ret
    }
    
    func fallthrough_ssa(a int) int {
    	ret := 0
    	switch a {
    	case 5:
    		ret++
    		fallthrough
    	case 4:
    		ret++
    		fallthrough
    	case 3:
    		ret++
    		fallthrough
    	case 2:
    		ret++
    		fallthrough
    	case 1:
    		ret++
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/sink_constant.mlir

      %1 = "tf.Const"() {value = dense<3.000000e+00> : tensor<f32>} : () -> tensor<f32>
      %2 = "tf.Const"() {value = dense<4.000000e+00> : tensor<f32>} : () -> tensor<f32>
      %3 = tf_executor.graph {
        %res, %ctl = tf_executor.island {
          %3 = "tf_device.cluster"() ({
    
            // In the device region, check that the 3 constants are materialized and
            // remapped to the uses.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. src/runtime/sys_openbsd_mips64.s

    	MOVV	old+16(FP), R6		// arg 3 - old sigaction
    	MOVV	$46, R2			// sys_sigaction
    	SYSCALL
    	BEQ	R7, 3(PC)
    	MOVV	$3, R2			// crash on syscall failure
    	MOVV	R2, (R2)
    	RET
    
    TEXT runtime·obsdsigprocmask(SB),NOSPLIT,$0
    	MOVW	how+0(FP), R4		// arg 1 - mode
    	MOVW	new+4(FP), R5		// arg 2 - new
    	MOVV	$48, R2			// sys_sigprocmask
    	SYSCALL
    	BEQ	R7, 3(PC)
    	MOVV	$3, R2			// crash on syscall failure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  6. src/go/doc/comment/testdata/list2.txt

    Text.
     1. Uno
       2) Dos
     3. Tres
       5. Cinco
     7. Siete
       11. Once
     12. Doce
     13. Trece.
    
    -- gofmt --
    Text.
     1. Uno
     2. Dos
     3. Tres
     5. Cinco
     7. Siete
     11. Once
     12. Doce
     13. Trece.
    
    -- text --
    Text.
     1. Uno
     2. Dos
     3. Tres
     5. Cinco
     7. Siete
     11. Once
     12. Doce
     13. Trece.
    
    -- markdown --
    Text.
    
     1. Uno
     2. Dos
     3. Tres
     5. Cinco
     7. Siete
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 529 bytes
    - Viewed (0)
  7. test/typeparam/setsimp.dir/main.go

    	s2 := a.Make[int]()
    	s2.Add(2)
    	s2.Add(3)
    	s1.AddSet(s2)
    	if got := s1.Len(); got != 3 {
    		panic(fmt.Sprintf("(%v).Len() == %d, want 3", s1, got))
    	}
    	s2.Add(1)
    	if !a.Equal(s1, s2) {
    		panic(fmt.Sprintf("a.Equal(%v, %v) = false, want true", s1, s2))
    	}
    }
    
    func TestSubSet() {
    	s1 := a.Make[int]()
    	s1.Add(1)
    	s1.Add(2)
    	s2 := a.Make[int]()
    	s2.Add(2)
    	s2.Add(3)
    	s1.SubSet(s2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractBasicGroupedTaskLoggingFunctionalTest.groovy

                assert result.groupedOutput.task(':3:log').output == "Error from 3\nOutput from 3\nDone with 3\nDone with 3"
            } else {
                assert result.groupedOutput.task(':1:log').output == "Output from 1\nDone with 1"
                assert result.groupedOutput.task(':2:log').output == "Output from 2\nDone with 2"
                assert result.groupedOutput.task(':3:log').output == "Output from 3\nDone with 3"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  9. src/runtime/race/testdata/time_test.go

    	f := func() {
    		v = 1
    		c <- 0
    	}
    	v = 2
    	time.AfterFunc(1, f)
    	<-c
    	v = 3
    }
    
    func TestNoRaceAfterFuncReset(_ *testing.T) {
    	v := 0
    	_ = v
    	c := make(chan int)
    	f := func() {
    		v = 1
    		c <- 0
    	}
    	t := time.AfterFunc(time.Hour, f)
    	t.Stop()
    	v = 2
    	t.Reset(1)
    	<-c
    	v = 3
    }
    
    func TestNoRaceTimer(_ *testing.T) {
    	v := 0
    	_ = v
    	c := make(chan int)
    	f := func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:34:15 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/connection/ProviderOperationParameters.java

        /**
         * @since 1.0-milestone-3
         */
        long getStartTime();
    
        /**
         * @return When null, use the provider's default Gradle user home dir.
         * @since 1.0-milestone-3
         */
        @Nullable
        File getGradleUserHomeDir();
    
        /**
         * @since 1.0-milestone-3
         */
        File getProjectDir();
    
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:46:37 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top