Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 94 for wieder (0.13 sec)

  1. analysis/analysis-api-impl-base/resources/META-INF/analysis-api/analysis-api-impl-base.xml

            serviceImplementation="org.jetbrains.kotlin.analysis.api.impl.base.lifetime.KaBaseLifetimeTracker"
        />
    
        <java.elementFinder implementation="org.jetbrains.kotlin.asJava.finder.JavaElementFinder"/>
      </extensions>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/FirStandaloneServiceRegistrar.kt

    import com.intellij.openapi.Disposable
    import com.intellij.psi.PsiElementFinder
    import com.intellij.psi.impl.PsiElementFinderImpl
    import org.jetbrains.kotlin.analysis.api.KaAnalysisNonPublicApi
    import org.jetbrains.kotlin.asJava.finder.JavaElementFinder
    
    @OptIn(KaAnalysisNonPublicApi::class)
    object FirStandaloneServiceRegistrar : AnalysisApiSimpleServiceRegistrar() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. manifests/charts/istio-cni/values.yaml

          # This is only capable of identifying broken pods; the user is responsible for fixing them (generally, by deleting them).
          # Note this gives the DaemonSet a relatively high privilege, as modifying pod metadata/status can have wider impacts.
          labelPods: false
          # deletePods will delete any broken pod. These will then be rescheduled, hopefully onto a node that is fully ready.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. src/crypto/x509/parser.go

    			}
    			for !val.Empty() {
    				var aiaDER cryptobyte.String
    				if !val.ReadASN1(&aiaDER, cryptobyte_asn1.SEQUENCE) {
    					return errors.New("x509: invalid authority info access")
    				}
    				var method asn1.ObjectIdentifier
    				if !aiaDER.ReadASN1ObjectIdentifier(&method) {
    					return errors.New("x509: invalid authority info access")
    				}
    				if !aiaDER.PeekASN1Tag(cryptobyte_asn1.Tag(6).ContextSpecific()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_messages.go

    			if !extData.ReadUint16LengthPrefixed(&binders) || binders.Empty() {
    				return false
    			}
    			for !binders.Empty() {
    				var binder []byte
    				if !readUint8LengthPrefixed(&binders, &binder) ||
    					len(binder) == 0 {
    					return false
    				}
    				m.pskBinders = append(m.pskBinders, binder)
    			}
    		default:
    			// Ignore unknown extensions.
    			continue
    		}
    
    		if !extData.Empty() {
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. docs/de/docs/how-to/custom-docs-ui-assets.md

    # Statische Assets der Dokumentationsoberfläche (selbst hosten)
    
    Die API-Dokumentation verwendet **Swagger UI** und **ReDoc**, und jede dieser Dokumentationen benötigt einige JavaScript- und CSS-Dateien.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ==== Replacement and upgrade of JSch
    
    http://www.jcraft.com/jsch/[JSch] has been replaced by https://github.com/mwiede/jsch[`com.github.mwiede:jsch`] and updated from 0.1.55 to https://github.com/mwiede/jsch/releases/tag/jsch-0.2.16[0.2.16]
    
    ==== Upgrade to Eclipse JGit 5.13.3
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  8. src/crypto/tls/key_schedule.go

    	"golang.org/x/crypto/sha3"
    )
    
    // This file contains the functions necessary to compute the TLS 1.3 key
    // schedule. See RFC 8446, Section 7.
    
    const (
    	resumptionBinderLabel         = "res binder"
    	clientEarlyTrafficLabel       = "c e traffic"
    	clientHandshakeTrafficLabel   = "c hs traffic"
    	serverHandshakeTrafficLabel   = "s hs traffic"
    	clientApplicationTrafficLabel = "c ap traffic"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    func convTnoptr(typ *byte, elem *any) unsafe.Pointer
    
    // Specialized versions of convT for specific types.
    // These functions take concrete types in the runtime. But they may
    // be used for a wider range of types, which have the same memory
    // layout as the parameter type. The compiler converts the
    // to-be-converted type to the parameter type before calling the
    // runtime function. This way, the call is ABI-insensitive.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. src/crypto/internal/edwards25519/scalar.go

    	}
    
    	// We have a value x of 512 bits, but our fiatScalarFromBytes function
    	// expects an input lower than l, which is a little over 252 bits.
    	//
    	// Instead of writing a reduction function that operates on wider inputs, we
    	// can interpret x as the sum of three shorter values a, b, and c.
    	//
    	//    x = a + b * 2^168 + c * 2^336  mod l
    	//
    	// We then precompute 2^168 and 2^336 modulo l, and perform the reduction
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top