Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 8,356 for one8 (0.05 sec)

  1. src/cmd/compile/internal/test/shift_test.go

    	}
    	if one16u>>N<<2>>N == 1 {
    		t.Errorf("shift overflow mishandled")
    	}
    	if one8<<N>>2<<N == 1 {
    		t.Errorf("shift overflow mishandled")
    	}
    	if one8u<<N>>2<<N == 1 {
    		t.Errorf("shift overflow mishandled")
    	}
    	if one8>>N<<2>>N == 1 {
    		t.Errorf("shift overflow mishandled")
    	}
    	if one8u>>N<<2>>N == 1 {
    		t.Errorf("shift overflow mishandled")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 22:26:39 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/guarantee-all-funcs-one-use.mlir

    // RUN: tf-opt %s -split-input-file -verify-diagnostics -tf-guarantee-all-funcs-one-use | FileCheck %s
    
    // -----
    // Basic test.
    // CHECK-LABEL: func @f
    func.func @f() {
      // CHECK: call @g() : () -> ()
      // CHECK: call @[[NEWG:.+]]() : () -> ()
      func.call @g() : () -> ()
      func.call @g() : () -> ()
      func.return
    }
    
    // CHECK: func @g()
    // CHECK: func private @[[NEWG]]()
    func.func @g() {
      func.return
    }
    
    // -----
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/dependencyLocking-unlockingSingleConfiguration/tests/locking-one.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 31 bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/kube/testdata/two-workloads-one-nosidecar.yaml

    Jonh Wendell <******@****.***> 1700195286 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/testdata/pgo/devirtualize/devirt.go

    		if gotI%10 == 0 {
    			return a2
    		}
    		return a1
    	}
    	oneI := 0
    	one := func(gotI int) int {
    		if gotI != oneI {
    			panic(fmt.Sprintf("one not called once per iteration; got i %d want %d", gotI, oneI))
    		}
    		oneI++
    
    		// The function value must be evaluated before arguments, so
    		// selectI must have been incremented already.
    		if selectI != oneI {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 18:17:57 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/FilePathUtilTest.groovy

            "some"      | "path"            | "other/some"
            "some"      | "pather/one"      | "path/two/three"
            "some/path" | "one"             | "two/three"
            ""          | "one"             | "two/three"
            ""          | "oner"            | "one"
            "some/path" | "with/one/ending" | "without/two/different"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/universe.go

    	okfor[ir.OMOD] = okforand[:]
    	okfor[ir.OMUL] = okforarith[:]
    	okfor[ir.ONE] = okforeq[:]
    	okfor[ir.OOR] = okforand[:]
    	okfor[ir.OOROR] = okforbool[:]
    	okfor[ir.OSUB] = okforarith[:]
    	okfor[ir.OXOR] = okforand[:]
    	okfor[ir.OLSH] = okforand[:]
    	okfor[ir.ORSH] = okforand[:]
    
    	// unary
    	okfor[ir.OBITNOT] = okforand[:]
    	okfor[ir.ONEG] = okforarith[:]
    	okfor[ir.ONOT] = okforbool[:]
    	okfor[ir.OPLUS] = okforarith[:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/security/index.md

    ## Additional Features
    
    There are some extra features to handle security apart from the ones covered in the [Tutorial - User Guide: Security](../../tutorial/security/index.md){.internal-link target=_blank}.
    
    !!! tip
        The next sections are **not necessarily "advanced"**.
    
        And it's possible that for your use case, the solution is in one of them.
    
    ## Read the Tutorial first
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 633 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/debug/dump.go

    	Rejected                   int
    	Timedout                   int
    	Cancelled                  int
    }
    
    // QueueDump is an instant dump of one queue in a queue-set.
    type QueueDump struct {
    	QueueSum          QueueSum
    	Requests          []RequestDump // just the waiting ones
    	RequestsExecuting []RequestDump
    	NextDispatchR     string
    	ExecutingRequests int
    	SeatsInUse        int
    }
    
    type QueueSum struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 17:38:43 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/core/collection/CaseInsensitiveMapTest.java

            assertThat(map.containsKey("onex"), is(not(true)));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testGet() throws Exception {
            assertThat(map.get("ONE"), is("1"));
            assertThat(map.get("One"), is("1"));
            assertThat(map.get("hoge"), is(nullValue()));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testPut() throws Exception {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top