Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 379 for Words (0.07 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListener.java

            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }
    
        /**
         * Returns {@code true} if passed in artifact is originating from local repository. In other words, we want
         * to process and store tracking information ONLY into local repository, not to any other place. This method
         * filters out currently built artifacts, as events are fired for them as well, but their resolved artifact
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 12 11:08:37 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. src/math/log1p.go

    //      We use a special Reme algorithm on [0,0.1716] to generate
    //      a polynomial of degree 14 to approximate R The maximum error
    //      of this polynomial approximation is bounded by 2**-58.45. In
    //      other words,
    //                      2      4      6      8      10      12      14
    //          R(z) ~ Lp1*s +Lp2*s +Lp3*s +Lp4*s +Lp5*s  +Lp6*s  +Lp7*s
    //      (the values of Lp1 to Lp7 are listed in the program)
    //      and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. src/internal/chacha8rand/chacha8_amd64.s

    	// This is not on the critical path.)
    	MOVL CX, 0(SP)
    	INCL CX
    	MOVL CX, 4(SP)
    	INCL CX
    	MOVL CX, 8(SP)
    	INCL CX
    	MOVL CX, 12(SP)
    	MOVOU 0(SP), X12
    
    	// Load seed words into next two rows and into DI, SI, R8..R13
    	SEED(0, DI, X4)
    	SEED(1, SI, X5)
    	SEED(2, R8, X6)
    	SEED(3, R9, X7)
    	SEED(4, R10, X8)
    	SEED(5, R11, X9)
    	SEED(6, R12, X10)
    	SEED(7, R13, X11)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

                params("${providedBy.size + 1}")
            }
        }
    
        /**
         * For all modules providing a capability, always use the preferred module, even if there's no conflict.
         * In other words, will forcefully upgrade all modules providing a capability to a selected module.
         *
         * @param to the preferred module
         */
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. src/crypto/tls/key_schedule.go

    }
    
    func kyberSharedSecret(K, c []byte) []byte {
    	// Package mlkem768 implements ML-KEM, which compared to Kyber removed a
    	// final hashing step. Compute SHAKE-256(K || SHA3-256(c), 32) to match Kyber.
    	// See https://words.filippo.io/mlkem768/#bonus-track-using-a-ml-kem-implementation-as-kyber-v3.
    	h := sha3.NewShake256()
    	h.Write(K)
    	ch := sha3.Sum256(c)
    	h.Write(ch[:])
    	out := make([]byte, 32)
    	h.Read(out)
    	return out
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/operations/DefaultBuildOperationQueue.java

            // Use this thread to process any work - this allows work to be executed using the
            // worker lease acquired by this thread even if the executor thread pool is full of
            // workers from other queues.  In other words, it ensures that all worker leases
            // are being utilized, regardless of the bounds of the thread pool.
            new WorkerRunnable().run();
    
            waitForWorkToComplete();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 31 15:18:20 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

                rest = StringUtils.capitalize(rest);
            }
            builder.append(rest);
            return builder.toString();
        }
    
        /**
         * Converts an arbitrary string to upper case identifier with words separated by _. Eg, camelCase -> CAMEL_CASE
         */
        @SuppressWarnings("StringCaseLocaleUsage")
        public static String toConstant(CharSequence string) {
            if (string == null) {
                return null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  8. build/pause/Makefile

    	done
    	docker manifest push --purge ${IMAGE}:${TAG}
    
    all-container-docker: $(addprefix sub-container-docker-,$(ALL_OS_ARCH.linux))
    all-container-registry: $(addprefix sub-container-registry-,$(ALL_OS_ARCH))
    
    # split words on hyphen, access by 1-index
    word-hyphen = $(word $2,$(subst -, ,$1))
    sub-container-%:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. src/runtime/arena.go

    // Add padding of size bytes.
    func (h writeUserArenaHeapBits) pad(s *mspan, size uintptr) writeUserArenaHeapBits {
    	if size == 0 {
    		return h
    	}
    	words := size / goarch.PtrSize
    	for words > ptrBits {
    		h = h.write(s, 0, ptrBits)
    		words -= ptrBits
    	}
    	return h.write(s, 0, words)
    }
    
    // Flush the bits that have been written, and add zeros as needed
    // to cover the full object [addr, addr+size).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/writebarrier.go

    // A ZeroRegion only applies to a single memory state.
    // Each bit in mask is set if the corresponding pointer-sized word of
    // the base object is known to be zero.
    // In other words, if mask & (1<<i) != 0, then [base+i*ptrSize, base+(i+1)*ptrSize)
    // is known to be zero.
    type ZeroRegion struct {
    	base *Value
    	mask uint64
    }
    
    // mightBeHeapPointer reports whether v might point to the heap.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
Back to top