Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 103 for O2 (0.03 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

                             .WithAttr("_outside", "O2"));
        Node* h = Binary(ops::NodeOut(recv2, 1), e,
                         b2.opts()
                             .WithName("H")
                             .WithAttr("_encapsulate", "F1")
                             .WithAttr("_outside", "O2"));
        Node* send2 =
            SendFromHost(ops::NodeOut(key_constant, 0), "F1", "F1", "O2", {g, h},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/SafeTreeSet.java

      @SuppressWarnings("unchecked")
      private static final Comparator<Object> NATURAL_ORDER =
          new Comparator<Object>() {
            @Override
            public int compare(Object o1, Object o2) {
              return ((Comparable<Object>) o1).compareTo(o2);
            }
          };
    
      private final NavigableSet<E> delegate;
    
      public SafeTreeSet() {
        this(new TreeSet<E>());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/TopKSelectorTest.java

        final long[] compareCalls = {0};
        Comparator<Integer> cmp =
            new Comparator<Integer>() {
              @Override
              public int compare(Integer o1, Integer o2) {
                compareCalls[0]++;
                return o1.compareTo(o2);
              }
            };
        TopKSelector<Integer> top = TopKSelector.least(k, cmp);
        top.offer(1);
        for (int i = 1; i < n; i++) {
          top.offer(0);
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

            return new Comparator<String>() {
                @Override
                public int compare(String o1, String o2) {
                    int diff = o1.compareToIgnoreCase(o2);
                    if (diff != 0) {
                        return diff;
                    }
                    return o1.compareTo(o2);
                }
            };
        }
    
        public static <K, V> Map<K, V> addMaps(Map<K, V> map1, Map<K, V> map2) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/cpp/groovy/build.gradle

                cppCompiler.define "NDEBUG"
    
                // Define toolchain-specific compiler and linker options
                if (toolChain in Gcc) {
                    cppCompiler.args "-O2", "-fno-access-control"
                    linker.args "-Xlinker", "-S"
                }
                if (toolChain in VisualCpp) {
                    cppCompiler.args "/Zi"
                    linker.args "/DEBUG"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

            return new Comparator<String>() {
                @Override
                public int compare(String o1, String o2) {
                    int diff = o1.compareToIgnoreCase(o2);
                    if (diff != 0) {
                        return diff;
                    }
                    return o1.compareTo(o2);
                }
            };
        }
    
        public static <K, V> Map<K, V> addMaps(Map<K, V> map1, Map<K, V> map2) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. operator/pkg/util/k8s_test.go

    	"istio.io/istio/pkg/test/util/assert"
    )
    
    var (
    	o1 = `
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      values:
        global:
          pilotCertProvider: kubernetes
    `
    	o2 = `
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      values:
        global:
          pilotCertProvider: istiod
    `
    	o3 = `
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_ppc64le_cgo_inline_plt.txt

    #
    # Note, older gcc/clang may accept this option, but
    # ignore it if binutils does not support the relocs.
    [!compiler:gc] skip
    [!cgo] skip
    [!GOARCH:ppc64le] skip
    
    env CGO_CFLAGS='-fno-plt -O2 -g'
    
    go build -ldflags='-linkmode=internal'
    exec ./noplttest
    stdout helloworld
    
    -- go.mod --
    module noplttest
    
    -- noplttest.go --
    package main
    
    /*
    #include <stdio.h>
    void helloworld(void) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 719 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/c/groovy/build.gradle

    // tag::compiler-args[]
    model {
        binaries {
            all {
                // Define toolchain-specific compiler and linker options
                if (toolChain in Gcc) {
                    cCompiler.args "-O2"
                    linker.args "-Xlinker", "-S"
                }
                if (toolChain in VisualCpp) {
                    cCompiler.args "/Zi"
                    linker.args "/DEBUG"
                }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. src/crypto/x509/oid_test.go

    			continue
    		}
    
    		var o2 OID
    		err = o2.UnmarshalText([]byte(tt.in))
    		if err != tt.err {
    			t.Errorf("(*OID).UnmarshalText(%q) = %v; want = %v", tt.in, err, tt.err)
    			continue
    		}
    
    		if err != nil {
    			continue
    		}
    
    		if !o.Equal(tt.out) {
    			t.Errorf("(*OID).UnmarshalText(%q) = %v; want = %v", tt.in, o, tt.out)
    			continue
    		}
    
    		if !o2.Equal(tt.out) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top