Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,074 for ACCEPT (0.14 sec)

  1. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    -		     : __builtin_strspn (s, accept))))))		      \
    -      : __builtin_strspn (s, accept)); })
    -#  else
    -#   define strspn(s, accept) \
    -  __extension__								      \
    -  ({ char __a0, __a1, __a2;						      \
    -     (__builtin_constant_p (accept) && __string2_1bptr_p (accept)	      \
    -      ? ((__a0 = ((const char *) (accept))[0], __a0 == '\0')		      \
    -	 ? ((void) (s), (size_t) 0)					      \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/expressionInfoProvider/AbstractReturnTargetSymbolTest.kt

                        expression.returnKeyword.accept(this)
                        expression.labeledExpression?.accept(this)
                        analyseForTest(expression) {
                            val target = expression.getReturnTargetSymbol()
                            append("/* " + target?.getNameWithPositionString() + " */")
                        }
                        expression.returnedExpression?.accept(this)
                    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Mar 27 16:04:54 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/exceptions/ContextAwareExceptionTest.groovy

        def "visitor does not visit direct cause"() {
            def cause = new RuntimeException()
            def e = new ContextAwareException(cause)
    
            when:
            e.accept(visitor)
    
            then:
            1 * visitor.visitCause(cause)
            1 * visitor.endVisiting()
            0 * visitor._
    
            and:
            e.reportableCauses == []
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 13:32:53 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. src/internal/poll/sock_cloexec.go

    // This file implements accept for platforms that provide a fast path for
    // setting SetNonblock and CloseOnExec.
    
    //go:build dragonfly || freebsd || (linux && !arm) || netbsd || openbsd
    
    package poll
    
    import "syscall"
    
    // Wrapper around the accept system call that marks the returned file
    // descriptor as nonblocking and close-on-exec.
    func accept(s int) (int, syscall.Sockaddr, string, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:25 UTC 2024
    - 712 bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/CompositeFileSystemSnapshot.java

            return snapshots.stream()
                .flatMap(FileSystemSnapshot::roots);
        }
    
        @Override
        public SnapshotVisitResult accept(FileSystemSnapshotHierarchyVisitor visitor) {
            for (FileSystemSnapshot snapshot : snapshots) {
                SnapshotVisitResult result = snapshot.accept(visitor);
                if (result == SnapshotVisitResult.TERMINATE) {
                    return SnapshotVisitResult.TERMINATE;
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemSnapshot.java

                return Stream.empty();
            }
    
            @Override
            public SnapshotVisitResult accept(FileSystemSnapshotHierarchyVisitor visitor) {
                return SnapshotVisitResult.CONTINUE;
            }
    
            @Override
            public SnapshotVisitResult accept(RelativePathTracker pathTracker, RelativePathTrackingFileSystemSnapshotHierarchyVisitor visitor) {
                return SnapshotVisitResult.CONTINUE;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/CircularEvaluationSpec.groovy

            }
    
            @Override
            String toString() {
                return stringValue
            }
    
            @Override
            void accept(ProviderInternal<?> providerInternal) {
                impl.accept(providerInternal)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:32 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/InputFileChanges.java

    public interface InputFileChanges extends ChangeContainer {
        boolean accept(String propertyName, ChangeVisitor visitor);
    
        InputFileChanges EMPTY = new InputFileChanges() {
    
            @Override
            public boolean accept(ChangeVisitor visitor) {
                return true;
            }
    
            @Override
            public boolean accept(String propertyName, ChangeVisitor visitor) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. src/fmt/scan.go

    func (s *ss) floatToken() string {
    	s.buf = s.buf[:0]
    	// NaN?
    	if s.accept("nN") && s.accept("aA") && s.accept("nN") {
    		return string(s.buf)
    	}
    	// leading sign?
    	s.accept(sign)
    	// Inf?
    	if s.accept("iI") && s.accept("nN") && s.accept("fF") {
    		return string(s.buf)
    	}
    	digits := decimalDigits + "_"
    	exp := exponent
    	if s.accept("0") && s.accept("xX") {
    		digits = hexadecimalDigits + "_"
    		exp = "pP"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/psiTypeProvider/AnalysisApiPsiTypeProviderTestUtils.kt

                    if (element is PsiClass) {
                        element.fields.forEach { it.accept(this) }
                        element.methods.forEach { it.accept(this) }
                        element.innerClasses.forEach { it.accept(this) }
                    }
                    if (result == null && element.kotlinOrigin in selfOrParents) {
                        result = element
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top