Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for 304_ (0.05 sec)

  1. test/abi/s_sif_sif.go

    	x float64
    }
    
    type T struct {
    	d, e P
    }
    
    //go:registerparams
    //go:noinline
    func G(t T) float64 {
    	return float64(t.d.a+t.e.a) + t.d.x + t.e.x
    }
    
    func main() {
    	x := G(T{P{10, 20}, P{30, 40}})
    	if x != 100.0 {
    		fmt.Printf("FAIL, Expected 100, got %f\n", x)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 651 bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelSourceFolderClasspathAttributesCrossVersionSpec.groovy

    import org.gradle.tooling.model.eclipse.EclipseProject
    
    class ToolingApiEclipseModelSourceFolderClasspathAttributesCrossVersionSpec extends ToolingApiSpecification {
    
        @TargetGradleVersion(">=3.0 <4.4")
        def "Source folder doesn't define classpath attributes"() {
            setup:
            settingsFile << 'rootProject.name = "root"'
            buildFile << "apply plugin: 'java'"
            file('src/main/java').mkdirs()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/init/kubeletfinalize.go

    		# Updates settings relevant to the kubelet after TLS bootstrap"
    		kubeadm init phase kubelet-finalize all --config
    		`)
    	// TODO: remove with 'experimental-cert-rotation'.
    	// https://github.com/kubernetes/kubeadm/issues/3046
    	enableClientCertRotationRun = false
    )
    
    // NewKubeletFinalizePhase creates a kubeadm workflow phase that updates settings
    // relevant to the kubelet after TLS bootstrap.
    func NewKubeletFinalizePhase() workflow.Phase {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:54:51 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelOutputLocationCrossVersionSpec.groovy

        }
    
        @TargetGradleVersion(">=3.0 <4.4")
        def "Non-Java project has default output location"() {
            when:
            EclipseProject project = loadToolingModel(EclipseProject)
            EclipseOutputLocation output = project.getOutputLocation()
    
            then:
            output.path == 'bin'
        }
    
        @TargetGradleVersion(">=3.0 <4.4")
        def "Java project has default output location"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/Constants.java

        public static final String POST_METHOD = "POST";
    
        public static final int OK_STATUS = 0;
    
        public static final int NOT_MODIFIED_STATUS = 304;
    
        public static final int OK_STATUS_CODE = 200;
    
        public static final int NOT_MODIFIED_STATUS_CODE = 304;
    
        public static final int BAD_REQUEST_STATUS_CODE = 400;
    
        public static final int FORBIDDEN_STATUS_CODE = 403;
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/etag.go

    // used in discovery endpoint responses
    
    // Attaches Cache-Busting functionality to an endpoint
    //   - Sets ETag header to provided hash
    //   - Replies with 304 Not Modified, if If-None-Match header matches hash
    //
    // hash should be the value of calculateETag on object. If hash is empty, then
    // the object is simply serialized without E-Tag functionality
    func ServeHTTPWithETag(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelSourceDirectoryOutputCrossVersionSpec.groovy

    import org.gradle.tooling.model.eclipse.EclipseProject
    
    class ToolingApiEclipseModelSourceDirectoryOutputCrossVersionSpec extends ToolingApiSpecification {
    
        @TargetGradleVersion(">=3.0 <4.4")
        def "Source directory has no output specified"() {
            setup:
            settingsFile << 'rootProject.name = "root"'
            buildFile << "apply plugin: 'java'"
            file('src/main/java').mkdirs()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/api/resource/amount_test.go

    		{"test when i.scale > scaled and result doesn't overflow", int64Amount{value: 100, scale: 5}, 2, 100000, true},
    		{"test when i.scale > scaled and result overflows", int64Amount{value: 876, scale: 30}, 4, 0, false},
    		{"test when i.scale < 0 and fraction exists", int64Amount{value: 93, scale: -1}, 0, 10, true},
    		{"test when i.scale < 0 and fraction doesn't exist", int64Amount{value: 100, scale: -1}, 0, 10, true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 20:54:15 UTC 2023
    - 7K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r44/ParameterizedToolingModelCrossVersionSpec.groovy

            }
    
            then:
            !model.isBuiltWithParameter()
            model.getParameterValue() == "noParameter"
        }
    
        @TargetGradleVersion(">=3.0 <4.4")
        def "error when get model with parameters for old gradle versions"() {
            def handler = Mock(ResultHandler)
            def version = targetDist.version.version
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/nativeplatform/tasks/AbstractUnexportMainSymbolIntegrationTest.groovy

            assert mainSymbol
            mainSymbol
        }
    
        protected abstract List<String> getMainSymbols()
    
        @Issue("https://github.com/gradle/gradle-native/issues/304")
        @ToBeFixedForConfigurationCache
        def "clean build works"() {
            makeSingleProject()
            componentUnderTest.writeToProject(testDirectory)
    
            expect:
            succeeds("clean", "unexport")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top