Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,115 for isSafe (0.11 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirAnnotationValueConverter.kt

            if (fqNameString != null) {
                val fqNameUnsafe = FqNameUnsafe(fqNameString)
                if (fqNameUnsafe.isSafe) {
                    return ClassId.topLevel(fqNameUnsafe.toSafe())
                }
            }
    
            return null
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/groovy/scripts/internal/ExpressionReplacingVisitorSupport.java

            PropertyExpression result = new PropertyExpression(
                replaceExpr(expr.getObjectExpression()),
                replaceExpr(expr.getProperty()),
                expr.isSafe()
            );
            result.setSpreadSafe(expr.isSpreadSafe());
            result.setStatic(expr.isStatic());
            result.setImplicitThis(expr.isImplicitThis());
            result.setType(expr.getType());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/RuleVisitor.java

            } else {
                super.visitPropertyExpression(expr);
            }
        }
    
        private String isDollarPathExpression(PropertyExpression expr) {
            if (expr.isSafe() || expr.isSpreadSafe()) {
                return null;
            }
            if (expr.getObjectExpression() instanceof VariableExpression) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            inPropertyExpression = ipe;
    
            boolean spreadSafe = pe.isSpreadSafe();
            PropertyExpression old = pe;
            pe = new PropertyExpression(objectExpression, property, pe.isSafe());
            pe.setSpreadSafe(spreadSafe);
            pe.setSourcePosition(old);
    
            String className = lookupClassName(pe);
            if (className != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/sha3/keccakf_amd64.s

    	MOVQ rCa, rDu;         \
    	XORQ rCi, rDo;         \
    	ROLQ $1, rDu;          \
    	                       \
    	/* Result b */         \
    	MOVQ _ba(iState), rBa; \
    	MOVQ _ge(iState), rBe; \
    	XORQ rCo, rDu;         \
    	MOVQ _ki(iState), rBi; \
    	MOVQ _mo(iState), rBo; \
    	MOVQ _su(iState), rBu; \
    	XORQ rDe, rBe;         \
    	ROLQ $44, rBe;         \
    	XORQ rDi, rBi;         \
    	XORQ rDa, rBa;         \
    	ROLQ $43, rBi;         \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/errorcalls_test.go

    			call, _ := n.(*syntax.CallExpr)
    			if call == nil {
    				return true
    			}
    			selx, _ := call.Fun.(*syntax.SelectorExpr)
    			if selx == nil {
    				return true
    			}
    			if !(isName(selx.X, "check") && isName(selx.Sel, "errorf")) {
    				return true
    			}
    			// check.errorf calls should have at least errorfMinArgCount arguments:
    			// position, code, format string, and arguments to format
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. src/go/types/errorcalls_test.go

    			call, _ := n.(*ast.CallExpr)
    			if call == nil {
    				return true
    			}
    			selx, _ := call.Fun.(*ast.SelectorExpr)
    			if selx == nil {
    				return true
    			}
    			if !(isName(selx.X, "check") && isName(selx.Sel, "errorf")) {
    				return true
    			}
    			// check.errorf calls should have at least errorfMinArgCount arguments:
    			// position, code, format string, and arguments to format
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. src/runtime/preempt.go

    //
    // A goroutine can be preempted at any safe-point. Currently, there
    // are a few categories of safe-points:
    //
    // 1. A blocked safe-point occurs for the duration that a goroutine is
    //    descheduled, blocked on synchronization, or in a system call.
    //
    // 2. Synchronous safe-points occur when a running goroutine checks
    //    for a preemption request.
    //
    // 3. Asynchronous safe-points occur at any instruction in user code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/Range.groovy

    class Range {
        private final long millis
    
        Range(long millis) {
            this.millis = millis
        }
    
        @Override
        String toString() {
            return "[approx $millis millis]"
        }
    
        boolean isCase(Duration duration) {
            def actualMillis = duration.millis
            return actualMillis > millis - 500 && actualMillis < millis + 2000
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/PluginHelper.java

            final List<String> versionList = new ArrayList<>();
            boolean isName = true;
            for (final String value : baseName.split("-")) {
                if (isName && value.length() > 0 && value.charAt(0) >= '0' && value.charAt(0) <= '9') {
                    isName = false;
                }
                if (isName) {
                    nameList.add(value);
                } else {
                    versionList.add(value);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
Back to top