Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 186 for unwrapped (0.31 sec)

  1. 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)
  2. 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)
  3. 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)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtSymbolByFirBuilder.kt

                val originalFirSymbol = firSymbol.fir.originalConstructorIfTypeAlias?.symbol ?: firSymbol
                val unwrapped = originalFirSymbol.originalIfFakeOverride() ?: originalFirSymbol
                return symbolsCache.cache(unwrapped) {
                    KaFirConstructorSymbol(unwrapped, analysisSession)
                }
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. tensorflow/cc/experimental/libtf/value.h

          type_ = NONE;
        }
      }
      ~TaggedValue() { destroy(); }
    
      /// @brief Get the underlying value based on type.
      ///
      /// @tparam T The desired return type.
      /// @return The unwrapped value. If this `TaggedValue` type does not currently
      ///         contain a value of type `T`, the program terminates via a call to
      ///         `assert`.
      template <typename T>
      T& get() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:23:45 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. src/runtime/sema.go

    	// be read outside the lock, but is only written to with lock held.
    	//
    	// Both wait & notify can wrap around, and such cases will be correctly
    	// handled as long as their "unwrapped" difference is bounded by 2^31.
    	// For this not to be the case, we'd need to have 2^31+ goroutines
    	// blocked on the same condvar, which is currently not possible.
    	notify uint32
    
    	// List of parked waiters.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/filters/timeout_test.go

    		t.Errorf("got res.StatusCode %d; expected %d due to panic", res.StatusCode, http.StatusInternalServerError)
    	}
    	select {
    	case err := <-gotPanic:
    		if err != http.ErrAbortHandler {
    			t.Errorf("expected unwrapped http.ErrAbortHandler, got %#v", err)
    		}
    	case <-time.After(30 * time.Second):
    		t.Fatalf("expected to see a handler panic, but didn't")
    	}
    }
    
    func TestTimeoutHeaders(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/codehost/git_test.go

    				Version: "97f6aa59c81c623494825b43d39e445566e429a4",
    				Time:    time.Date(2018, 4, 17, 20, 0, 19, 0, time.UTC),
    			},
    		},
    		{
    			repo: gitrepo1,
    			rev:  "v1.2.4-annotated", // annotated tag uses unwrapped commit hash
    			info: &RevInfo{
    				Name:    "ede458df7cd0fdca520df19a33158086a8a68e81",
    				Short:   "ede458df7cd0",
    				Version: "v1.2.4-annotated",
    				Time:    time.Date(2018, 4, 17, 19, 43, 22, 0, time.UTC),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/codehost/git.go

    				refs[f[1]] = f[0]
    			}
    		}
    		for ref, hash := range refs {
    			if k, found := strings.CutSuffix(ref, "^{}"); found { // record unwrapped annotated tag as value of tag
    				refs[k] = hash
    				delete(refs, ref)
    			}
    		}
    		r.refs = refs
    	})
    	return r.refs, r.refsErr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  10. src/encoding/asn1/asn1.go

    	}
    
    	if !params.explicit && params.private && params.tag != nil {
    		expectedClass = ClassPrivate
    		expectedTag = *params.tag
    		matchAnyClassAndTag = false
    	}
    
    	// We have unwrapped any explicit tagging at this point.
    	if !matchAnyClassAndTag && (t.class != expectedClass || t.tag != expectedTag) ||
    		(!matchAny && t.isCompound != compoundType) {
    		// Tags don't match. Again, it could be an optional element.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
Back to top