Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 118 for corerest (0.3 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

                        module("org.utils:api:1.5")
                    }
                    module("org.utils:optional-lib:5.0")
                }
            }
        }
    
        void "module forced by rule has correct selection reason"() {
            mavenRepo.module("org.utils", "impl", '1.3').dependsOn('org.utils', 'api', '1.3').publish()
            mavenRepo.module("org.utils", "impl", '1.5').dependsOn('org.utils', 'api', '1.5').publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/p256_asm_ppc64le.s

    // - The string used with VPERM to swap the byte order
    //   for loads and stores.
    // - The constants that are loaded from CPOOL.
    //
    
    // The following constants are defined in an order
    // that is correct for use with LXVD2X/STXVD2X
    // on little endian.
    DATA p256<>+0x00(SB)/8, $0xffffffff00000001 // P256
    DATA p256<>+0x08(SB)/8, $0x0000000000000000 // P256
    DATA p256<>+0x10(SB)/8, $0x00000000ffffffff // P256
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. src/runtime/mbitmap.go

    			println("runtime: would've stopped here")
    			dumpTypePointers(tp)
    			break
    		}
    		print("runtime: addr=", hex(addr), "\n")
    		dumpTypePointers(tp)
    	}
    	throw("heapSetType: pointer entry not correct")
    }
    
    func doubleCheckHeapPointersInterior(x, interior, size, dataSize uintptr, typ *_type, header **_type, span *mspan) {
    	bad := false
    	if interior < x {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                    parent = parseOtherIvyFileOnFileSystem(location);
                    if (parent != null) {
                        //verify that the parsed descriptor is the correct parent module.
                        ModuleId expected = IvyUtil.createModuleId(parentOrganisation, parentModule);
                        ModuleId pid = parent.getModuleRevisionId().getModuleId();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

    }
    
    // Finish step N-1
    if (C_nm1) {
       T_nm1 = core_tpu(args_nm1, N_nm1, F_nm1)
       backward(args_nm1, N_nm1, F_nm1, T_nm1)
    }
    
    // To match the original, un-pipelined while loop, we need to return the
    // correct results from the pipelined version. Nominally, we'd like to do
    // this:
    // if ( NOT(C_nm2) ) {
    //   return args_nm2
    // } else if (NOT(C_nm1)) {
    //   return args_nm1
    // } else {
    //   return args_n
    // }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/SetsTest.java

        new EqualsTester().addEqualityGroup(forward, reverse).testEquals();
      }
    
      /**
       * Test that a hash code miscomputed by "input.hashCode() * tooFarValue / 2" is correct under our
       * {@code hashCode} implementation.
       */
      public void testPowerSetHashCode_inputHashCodeTimesTooFarValueIsZero() {
        Set<Object> sumToEighthMaxIntElements =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    func FindFirstFile(name *uint16, data *Win32finddata) (handle Handle, err error) {
    	// NOTE(rsc): The Win32finddata struct is wrong for the system call:
    	// the two paths are each one uint16 short. Use the correct struct,
    	// a win32finddata1, and then copy the results out.
    	// There is no loss of expressivity here, because the final
    	// uint16, if it is used, is supposed to be a NUL, and Go doesn't need that.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  8. src/testing/testing.go

    	}
    	running.Store(t.name, highPrecisionTimeNow())
    
    	// Instead of reducing the running count of this test before calling the
    	// tRunner and increasing it afterwards, we rely on tRunner keeping the
    	// count correct. This ensures that a sequence of sequential tests runs
    	// without being preempted, even when their parent is a parallel test. This
    	// may especially reduce surprises if *parallel == 1.
    	go tRunner(t, f)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_messages.go

    }
    
    // marshalWithoutBinders returns the ClientHello through the
    // PreSharedKeyExtension.identities field, according to RFC 8446, Section
    // 4.2.11.2. Note that m.pskBinders must be set to slices of the correct length.
    func (m *clientHelloMsg) marshalWithoutBinders() ([]byte, error) {
    	bindersLen := 2 // uint16 length prefix
    	for _, binder := range m.pskBinders {
    		bindersLen += 1 // uint8 length prefix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/validation/validation.go

    	} else if len(trimmedMessageExpression) != 0 {
    		// use v.MessageExpression instead of trimmedMessageExpression so that
    		// the compiler output shows the correct column.
    		allErrors = append(allErrors, validateMessageExpression(compiler, v.MessageExpression, opts, fldPath.Child("messageExpression"))...)
    	}
    	if len(v.Message) > 0 && len(trimmedMsg) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
Back to top