Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,517 for colist (0.1 sec)

  1. src/debug/dwarf/const.go

    // the opPlusUconst operator is expected by the type parser.
    const (
    	opAddr       = 0x03 /* 1 op, const addr */
    	opDeref      = 0x06
    	opConst1u    = 0x08 /* 1 op, 1 byte const */
    	opConst1s    = 0x09 /*	" signed */
    	opConst2u    = 0x0A /* 1 op, 2 byte const  */
    	opConst2s    = 0x0B /*	" signed */
    	opConst4u    = 0x0C /* 1 op, 4 byte const */
    	opConst4s    = 0x0D /*	" signed */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  2. src/crypto/aes/const.go

    // Addition of these binary polynomials corresponds to binary xor.
    // Reducing mod poly corresponds to binary xor with poly every
    // time a 0x100 bit appears.
    const poly = 1<<8 | 1<<4 | 1<<3 | 1<<1 | 1<<0 // x⁸ + x⁴ + x³ + x + 1
    
    // Powers of x mod poly in GF(2).
    var powx = [16]byte{
    	0x01,
    	0x02,
    	0x04,
    	0x08,
    	0x10,
    	0x20,
    	0x40,
    	0x80,
    	0x1b,
    	0x36,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 01 21:52:00 UTC 2018
    - 29.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/LoggingExcludeFactory.java

                }
                throw UncheckedException.throwAsUncheckedException(e);
            }
            if (subject.isTraceOperations()) {
                LOGGER.debug("{\"operation\": { \"name\": \"{}\", \"operands\": {}, \"result\": {} } }", operationName, toList(operands), spec);
            }
            return spec;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestDataGenerator.java

            private List<ExecutionLabel> executionLabels;
            private List<ExecutionData> totalTime;
            private List<ExecutionData> confidence;
            private List<ExecutionData> difference;
            private List<BackgroundColor> background;
    
            AllExecutionData(List<ExecutionLabel> executionLabels, List<ExecutionData> totalTime, List<ExecutionData> confidence, List<ExecutionData> difference) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. cni/test/testdata/pre/noplugins_calico.conflist

    Ben Leggett <******@****.***> 1716316321 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 527 bytes
    - Viewed (0)
  6. cni/test/testdata/pre/nover_calico.conflist

    Ben Leggett <******@****.***> 1716316321 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 503 bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultTestLauncher.java

        private final DefaultDebugOptions debugOptions = new DefaultDebugOptions();
        private final Map<String, List<InternalJvmTestRequest>> tasksAndTests = new HashMap<String, List<InternalJvmTestRequest>>();
        private boolean isRunDefaultTasks = false;
        private final List<InternalTaskSpec> taskSpecs = new ArrayList<InternalTaskSpec>();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/AbstractResolutionFailureDescriber.java

            @SuppressWarnings("DataFlowIssue") List<String> onlyOnProducer = assessedCandidate.getOnlyOnCandidateAttributes().stream()
                .map(assessedAttribute -> "Provides " + describer.describeExtraAttribute(assessedAttribute.getAttribute(), assessedAttribute.getProvided()) + " but the consumer didn't ask for it")
                .collect(Collectors.toList());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. maven-di/src/main/java/org/apache/maven/di/impl/ReflectionUtils.java

            Class<?> cls = key.getRawType();
    
            List<Constructor<?>> constructors = Arrays.asList(cls.getDeclaredConstructors());
            List<Constructor<?>> injectConstructors = constructors.stream()
                    .filter(c -> c.isAnnotationPresent(Inject.class))
                    .collect(toList());
    
            List<Method> factoryMethods = Arrays.stream(cls.getDeclaredMethods())
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/util/internal/WrapUtil.java

         * Wraps the given items in a mutable list.
         */
        @SafeVarargs
        @SuppressWarnings("varargs")
        public static <T> List<T> toList(T... items) {
            ArrayList<T> coll = new ArrayList<T>();
            Collections.addAll(coll, items);
            return coll;
        }
    
        /**
         * Wraps the given items in a mutable list.
         */
        public static <T> List<T> toList(Iterable<? extends T> items) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:11 UTC 2021
    - 3.7K bytes
    - Viewed (0)
Back to top