Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for swapcontext (0.17 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go

    	SYS_GETCONTEXT               = 421 // { int getcontext(struct __ucontext *ucp); }
    	SYS_SETCONTEXT               = 422 // { int setcontext(const struct __ucontext *ucp); }
    	SYS_SWAPCONTEXT              = 423 // { int swapcontext(struct __ucontext *oucp, const struct __ucontext *ucp); }
    	SYS_SWAPOFF                  = 424 // { int swapoff(const char *name); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/runner/StepContext.kt

    import org.gradle.internal.declarativedsl.objectGraph.AssignmentTrace
    
    
    interface StepContext
    
    
    data class AnalysisStepContext(
        val supportedDocumentChecks: Iterable<DocumentCheck>,
        val supportedResolutionResultHandlers: Iterable<ResolutionResultHandler>
    ) : StepContext
    
    
    data class AnalysisStepResult(
        val evaluationSchema: EvaluationSchema,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SSPContext.java

     */
    package jcifs.smb;
    
    
    import org.bouncycastle.asn1.ASN1ObjectIdentifier;
    
    import jcifs.CIFSException;
    
    
    /**
     * @author mbechler
     *
     */
    public interface SSPContext {
    
        /**
         * @return the signing key for the session
         * 
         * @throws CIFSException
         */
        byte[] getSigningKey () throws CIFSException;
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SpnegoContext.java

    
        /**
         * Instance a <code>SpnegoContext</code> object by wrapping a {@link SSPContext}
         * with the same mechanism this {@link SSPContext} used.
         * 
         * @param source
         *            the {@link SSPContext} to be wrapped
         */
        SpnegoContext ( Configuration config, SSPContext source ) {
            this(config, source, source.getSupportedMechs());
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 04 04:18:31 UTC 2021
    - 14.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/conversion/AnalysisAndConversionStepRunner.kt

            scriptIdentifier: String,
            scriptSource: String,
            step: InterpretationSequenceStep,
            stepContext: ConversionStepContext
        ): EvaluationResult<ConversionStepResult> = when (val analysisResult = analysisStepRunner.runInterpretationSequenceStep(scriptIdentifier, scriptSource, step, stepContext.analysisStepContext)) {
            is EvaluationResult.NotEvaluated ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:40 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/Kerb5Context.java

         * {@inheritDoc}
         *
         * @see jcifs.smb.SSPContext#isSupported(org.bouncycastle.asn1.ASN1ObjectIdentifier)
         */
        @Override
        public boolean isSupported ( ASN1ObjectIdentifier mechanism ) {
            return KRB5_MECH_OID.equals(mechanism) || KRB5_MS_MECH_OID.equals(mechanism);
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.smb.SSPContext#isPreferredMech(org.bouncycastle.asn1.ASN1ObjectIdentifier)
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Aug 02 08:22:42 UTC 2018
    - 13.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/runner/InterpretationSequenceStepRunners.kt

    import org.gradle.declarative.dsl.evaluation.InterpretationSequenceStep
    
    
    interface InterpretationSequenceStepRunner<in C : StepContext, out R : StepResult> {
        fun runInterpretationSequenceStep(
            scriptIdentifier: String,
            scriptSource: String,
            step: InterpretationSequenceStep,
            stepContext: C
        ): EvaluationResult<R>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/runner/AnalysisStepRunner.kt

        override fun runInterpretationSequenceStep(
            scriptIdentifier: String,
            scriptSource: String,
            step: InterpretationSequenceStep,
            stepContext: AnalysisStepContext
        ): EvaluationResult<AnalysisStepResult> {
            val failureReasons = mutableListOf<NotEvaluated.StageFailure>()
    
            val evaluationSchema = step.evaluationSchemaForStep
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:40 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/NtlmContext.java

            return ret;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.smb.SSPContext#getFlags()
         */
        @Override
        public int getFlags () {
            return 0;
        }
    
    
        /**
         * 
         * {@inheritDoc}
         *
         * @see jcifs.smb.SSPContext#isSupported(org.bouncycastle.asn1.ASN1ObjectIdentifier)
         */
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 15.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbSessionImpl.java

            }
    
            try {
                final String hostName = host;
                return Subject.doAs(s, new PrivilegedExceptionAction<SSPContext>() {
    
                    @Override
                    public SSPContext run () throws Exception {
                        return getCredentials().createContext(getContext(), tdomain, hostName, negoResp.getSecurityBlob(), doSigning);
                    }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
Back to top