Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 95 for 304_ (0.34 sec)

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

    	SYS_LLROUNDD128                     = 0xBE0 // 3040
    	SYS_LOGD32                          = 0xBE1 // 3041
    	SYS_LOGD64                          = 0xBE2 // 3042
    	SYS_LOGD128                         = 0xBE3 // 3043
    	SYS_LOG10D32                        = 0xBE4 // 3044
    	SYS_LOG10D64                        = 0xBE5 // 3045
    	SYS_LOG10D128                       = 0xBE6 // 3046
    	SYS_LOG1PD32                        = 0xBE7 // 3047
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. android/guava-tests/test/com/google/common/collect/TreeMultimapNaturalTest.java

       */
      public void testCreateFromTreeMultimap() {
        Multimap<Double, Double> tree = TreeMultimap.create(KEY_COMPARATOR, VALUE_COMPARATOR);
        tree.put(1.0, 2.0);
        tree.put(2.0, 3.0);
        tree.put(3.0, 4.0);
        tree.put(4.0, 5.0);
    
        TreeMultimap<Double, Double> copyFromTree = TreeMultimap.create(tree);
        assertEquals(tree, copyFromTree);
        assertSame(Ordering.natural(), copyFromTree.keyComparator());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top