Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 458 for unwrapped (0.23 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/ScriptSourceAwareImplementationResolver.java

        @Override
        public ImplementationValue resolveImplementation(Object bean) {
            Object unwrapped = unwrapBean(bean);
            String classIdentifier = ScriptOriginUtil.getOriginClassIdentifier(unwrapped);
            return new ImplementationValue(classIdentifier, unwrapped);
        }
    
        @VisibleForTesting
        static Object unwrapBean(Object bean) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 16 20:27:03 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. src/testing/testing_windows.go

    // isWindowsRetryable reports whether err is a Windows error code
    // that may be fixed by retrying a failed filesystem operation.
    func isWindowsRetryable(err error) bool {
    	for {
    		unwrapped := errors.Unwrap(err)
    		if unwrapped == nil {
    			break
    		}
    		err = unwrapped
    	}
    	if err == syscall.ERROR_ACCESS_DENIED {
    		return true // Observed in https://go.dev/issue/50051.
    	}
    	if err == windows.ERROR_SHARING_VIOLATION {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

            is ConstructorDescriptor -> unwrapped.toKtConstructorSymbol(analysisContext)
            is FunctionDescriptor -> {
                if (DescriptorUtils.isAnonymousFunction(unwrapped)) {
                    KaFe10DescAnonymousFunctionSymbol(unwrapped, analysisContext)
                } else {
                    KaFe10DescFunctionSymbol.build(unwrapped, analysisContext)
                }
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/Invocation.java

         */
        int getArgsCount();
    
        /**
         * Returns an <b>unwrapped</b> argument at the position {@code pos}.
         * Arguments are numbered left-to-right, from 0 to {@code getArgsCount() - 1} inclusive.
         * Throws {@link ArrayIndexOutOfBoundsException} if {@code pos} is outside the bounds.
         *
         * @param pos the position of the argument
         * @return the unwrapped value of the argument
         */
        Object getArgument(int pos);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 08 05:57:27 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. src/go/doc/comment/testdata/list9.txt

    4. This one
      is a list
      because of the indented text.
    5. More wrapped
      items.
    6. And unwrapped.
    
    7. The blank line stops the heuristic.
    -- gofmt --
    Text.
    
    1. Not a list
    2. because it is
    3. unindented.
    
     4. This one
        is a list
        because of the indented text.
     5. More wrapped
        items.
     6. And unwrapped.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 20:47:52 UTC 2022
    - 419 bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionTypeProvider.kt

    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/unwrap_xla_call_module_op.mlir

    // Tests if XlaCallModule op without quantizable trait that calls function with
    // '_from_xla_call_module' trait is unwrapped.
    // Tests if XlaCallModule op with quantizable trait is not unwrapped.
    // Tests if XlaCallModule op without quantizable trait that calls function
    // without '_from_xla_call_module' trait is not unwrapped.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 08 22:40:14 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/primitives/Primitives.java

        checkNotNull(type);
    
        // cast is safe: long.class and Long.class are both of type Class<Long>
        @SuppressWarnings("unchecked")
        Class<T> unwrapped = (Class<T>) WRAPPER_TO_PRIMITIVE_TYPE.get(type);
        return (unwrapped == null) ? type : unwrapped;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 05 19:04:25 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/primitives/Primitives.java

        checkNotNull(type);
    
        // cast is safe: long.class and Long.class are both of type Class<Long>
        @SuppressWarnings("unchecked")
        Class<T> unwrapped = (Class<T>) WRAPPER_TO_PRIMITIVE_TYPE.get(type);
        return (unwrapped == null) ? type : unwrapped;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 05 19:04:25 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ExpressionTypeProvider.kt

            val unwrapped = expression.unwrapParenthesesLabelsAndAnnotations() as? KtExpression ?: return null
            if (unwrapped.getParentOfTypes(false, *NON_EXPRESSION_CONTAINERS) != null) {
                return null
            }
    
            val bindingContext = analysisContext.analyze(unwrapped, AnalysisMode.PARTIAL)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top