Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 103 for O2 (0.04 sec)

  1. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

            Arrays.sort(addrs, new Comparator<Address>() {
    
                @Override
                public int compare ( Address o1, Address o2 ) {
                    Integer fail1 = SmbTransportPoolImpl.this.failCounts.get(o1.getHostAddress());
                    Integer fail2 = SmbTransportPoolImpl.this.failCounts.get(o2.getHostAddress());
                    if ( fail1 == null ) {
                        fail1 = 0;
                    }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 12.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/selectors/SelectorStateResolver.java

                this.versionParser = versionParser;
            }
    
            @Override
            public int compare(ComponentIdResolveResult o1, ComponentIdResolveResult o2) {
                return versionComparator.compare(versionParser.transform(o2.getModuleVersionId().getVersion()), versionParser.transform(o1.getModuleVersionId().getVersion()));
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 14:22:29 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritegeneric.go

    	}
    	// match: (EqPtr (OffPtr [o1] p1) (OffPtr [o2] p2))
    	// cond: isSamePtr(p1, p2)
    	// result: (ConstBool [o1 == o2])
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			if v_0.Op != OpOffPtr {
    				continue
    			}
    			o1 := auxIntToInt64(v_0.AuxInt)
    			p1 := v_0.Args[0]
    			if v_1.Op != OpOffPtr {
    				continue
    			}
    			o2 := auxIntToInt64(v_1.AuxInt)
    			p2 := v_1.Args[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteS390X.go

    		return true
    	}
    	// match: (ADDWload [o1] {s1} x (MOVDaddr [o2] {s2} ptr) mem)
    	// cond: ptr.Op != OpSB && is20Bit(int64(o1)+int64(o2)) && canMergeSym(s1, s2)
    	// result: (ADDWload [o1+o2] {mergeSym(s1, s2)} x ptr mem)
    	for {
    		o1 := auxIntToInt32(v.AuxInt)
    		s1 := auxToSym(v.Aux)
    		x := v_0
    		if v_1.Op != OpS390XMOVDaddr {
    			break
    		}
    		o2 := auxIntToInt32(v_1.AuxInt)
    		s2 := auxToSym(v_1.Aux)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtScopeProvider.kt

         *     class C2
         *     inner class D2
         *     object O2
         *     companion object {
         *         val baz: String = ""
         *     }
         * }
         * ```
         *
         * The static member scope of `B` contains the following symbols:
         *
         * ```
         * class C2
         * inner class D2
         * object O2
         * companion object
         * ```
         *
         * #### Java Example
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. tests/update_test.go

    		Token: Token{Content: "token2"},
    	}
    	o2, err := saveTokenOwner(&owner)
    	if err != nil {
    		t.Errorf("failed to save token owner, got error: %v", err)
    	}
    	if o2.Name != "user_name" {
    		t.Errorf(`owner name should be "user_name", but got: "%s"`, o2.Name)
    	}
    	if o2.Token.Content != "token2_encrypted" {
    		t.Errorf(`token content should be "token2_encrypted", but got: "%s"`, o2.Token.Content)
    	}
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Dec 04 03:50:58 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  7. src/crypto/internal/boring/build-goboring.sh

    EOF
    
    awk -f boringx.awk goboringcrypto.h # writes goboringcrypto.x
    awk -f boringh.awk goboringcrypto.h # writes goboringcrypto[01].h
    
    ls -l ../boringssl/include
    clang++ -std=c++11 -fPIC -I../boringssl/include -O2 -o a.out  goboringcrypto.cc
    ./a.out || exit 2
    
    # clang implements u128 % u128 -> u128 by calling __umodti3,
    # which is in libgcc. To make the result self-contained even if linking
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/security_test.go

    	"testing"
    )
    
    var goodCompilerFlags = [][]string{
    	{"-DFOO"},
    	{"-Dfoo=bar"},
    	{"-Ufoo"},
    	{"-Ufoo1"},
    	{"-F/Qt"},
    	{"-F", "/Qt"},
    	{"-I/"},
    	{"-I/etc/passwd"},
    	{"-I."},
    	{"-O"},
    	{"-O2"},
    	{"-Osmall"},
    	{"-W"},
    	{"-Wall"},
    	{"-Wp,-Dfoo=bar"},
    	{"-Wp,-Ufoo"},
    	{"-Wp,-Dfoo1"},
    	{"-Wp,-Ufoo1"},
    	{"-flto"},
    	{"-fobjc-arc"},
    	{"-fno-objc-arc"},
    	{"-fomit-frame-pointer"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. src/context/x_test.go

    	o0 := otherContext{Background()}
    	check(o0, "o0", "", "", "")
    
    	o1 := otherContext{WithValue(Background(), k1, "c1k1")}
    	check(o1, "o1", "c1k1", "", "")
    
    	o2 := WithValue(o1, k2, "o2k2")
    	check(o2, "o2", "c1k1", "o2k2", "")
    
    	o3 := otherContext{c4}
    	check(o3, "o3", "", "c2k2", "c3k3")
    
    	o4 := WithValue(o3, k3, nil)
    	check(o4, "o4", "", "c2k2", "")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. src/cmd/link/internal/arm64/asm.go

    	tramp.SetSize(12) // 3 instructions
    	P := make([]byte, tramp.Size())
    	o1 := uint32(0x90000010) // adrp x16, target
    	o2 := uint32(0x91000210) // add x16, pc-relative-offset
    	o3 := uint32(0xd61f0200) // br x16
    	ctxt.Arch.ByteOrder.PutUint32(P, o1)
    	ctxt.Arch.ByteOrder.PutUint32(P[4:], o2)
    	ctxt.Arch.ByteOrder.PutUint32(P[8:], o3)
    	tramp.SetData(P)
    
    	r, _ := tramp.AddRel(objabi.R_ADDRARM64)
    	r.SetSiz(8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
Back to top