Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,091 for GETs (0.03 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/apache/maven/wagon/wagon-webdav/1.0-beta-2/wagon-webdav-1.0-beta-2.pom

        <version>1.0-beta-2</version>
      </parent>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>wagon-webdav</artifactId>
      <name>Maven Wagon WebDav Provider</name>
      <version>1.0-beta-2</version>
      <description>Wagon that gets and puts artifacts through webdav protocol</description>
      <contributors>
        <contributor>
          <name>Henry Isidro</name>
          <email>******@****.***</email>
        </contributor>
        <contributor>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginVersionIntegrationTest.groovy

                assertContents(containsLine(containsString('AvoidMultipleUnaryOperators'))).
                assertContents(not(containsLine(containsString('OverrideBothEqualsAndHashcode'))))
        }
    
        def "gets reasonable message when priority level threshold is out of range from extension"() {
            goodCode()
            buildFile << """
            pmd {
                rulesMinimumPriority = 11
            }
    """
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/ClosureCreationInterceptingVerifier.java

    import org.codehaus.groovy.ast.ClassHelper;
    import org.codehaus.groovy.ast.ClassNode;
    import org.gradle.api.Action;
    
    /**
     * The verifier is the only thing in the Groovy compiler chain that gets to visit the classes generated from closure expressions. If we want to transform these classes, we have to do it with this
     * *hack*.
     */
    @ThreadSafe
    public class ClosureCreationInterceptingVerifier implements Action<ClassNode> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ScopedServiceRegistry.java

        ) {
            super(displayName, parents);
            addServiceValidator(scope, strict);
        }
    
        /**
         * Validator implements a special type of service ({@link AnnotatedServiceLifecycleHandler})
         * that gets notified about all existing and further service registrations.
         */
        private void addServiceValidator(Class<? extends Scope> scope, boolean strict) {
            add(new ServiceScopeValidator(scope, strict));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. src/testing/run_example.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !js && !wasip1
    
    // TODO(@musiol, @odeke-em): re-unify this entire file back into
    // example.go when js/wasm gets an os.Pipe implementation
    // and no longer needs this separation.
    
    package testing
    
    import (
    	"fmt"
    	"io"
    	"os"
    	"strings"
    	"time"
    )
    
    func runExample(eg InternalExample) (ok bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:32 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AttributeBasedFileVisitDetailsFactory.java

            } else {
                return new AttributeBasedFileVisitDetails(file, relativePath, stopFlag, fileSystem, fileSystem, attrs);
            }
        }
    
        /**
         * Gets attributes and returns FileVisitDetails for the given relativePath.
         *
         * @param path Path of the file
         * @param relativePath RelativePath of the file
         * @param stopFlag transient flag to stop visiting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. src/syscall/asm_linux_386.s

    	MOVL	AX, r1+16(FP)
    	MOVL	DX, r2+20(FP)
    	RET
    
    #define SYS_SOCKETCALL 102	/* from zsysnum_linux_386.go */
    
    // func socketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (n int, err int)
    // Kernel interface gets call sub-number and pointer to a0.
    TEXT ·socketcall(SB),NOSPLIT,$0-36
    	CALL	runtime·entersyscall(SB)
    	MOVL	$SYS_SOCKETCALL, AX	// syscall entry
    	MOVL	call+0(FP), BX	// socket call number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. src/runtime/lock_js.go

    	// It needs to be active when returning to JavaScript.
    	gp *g
    	// returned reports whether the event handler has returned.
    	// When all goroutines are idle and the event handler has returned,
    	// then g gets resumed and returns the execution to JavaScript.
    	returned bool
    }
    
    type timeoutEvent struct {
    	id int32
    	// The time when this timeout will be triggered.
    	time int64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:02:20 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/hooks.go

    	// StopCh is the channel that will be closed when the server stops.
    	//
    	// Deprecated: use the PostStartHookContext itself instead, it contains a context that
    	// gets cancelled when the server stops. StopCh keeps getting provided for existing code.
    	StopCh <-chan struct{}
    	// Context gets cancelled when the server stops.
    	context.Context
    }
    
    // PostStartHookProvider is an interface in addition to provide a post start hook for the api server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestLoggingContainer.java

        /**
         * Configures logging options for debug level.
         *
         * @param action logging options for debug level
         */
        void debug(Action<TestLogging> action);
    
        /**
         * Gets logging options for info level.
         *
         * @return logging options for info level
         */
        TestLogging getInfo();
    
        /**
         * Sets logging options for info level.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top