Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 219 for regular (0.37 sec)

  1. src/cmd/compile/internal/ssagen/abi.go

    	// NOSPLIT for these wrappers, so all are currently tagged with NOSPLIT.
    	fn.Pragma |= ir.Nosplit
    
    	// Generate call. Use tail call if no params and no returns,
    	// but a regular call otherwise.
    	//
    	// Note: ideally we would be using a tail call in cases where
    	// there are params but no returns for ABI0->ABIInternal wrappers,
    	// provided that all params fit into registers (e.g. we don't have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. src/go/types/check_test.go

    // string.
    //
    // The harness will verify that each ERROR pattern is a substring of the
    // error reported at that source position, and that each ERRORx pattern
    // is a regular expression matching the respective error.
    // Consecutive comments may be used to indicate multiple errors reported
    // at the same position.
    //
    // For instance, the following test source indicates that an "undeclared"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    +
    Your build may fail at this point, but that's ok; the scan will still run.
    Compare the build scan for the Gradle build to the one for the Maven build and continue down this list to troubleshoot the failures.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  4. src/os/removeall_test.go

    	}
    
    	file := filepath.Join(tmpDir, "file")
    	path := filepath.Join(tmpDir, "_TestRemoveAll_")
    	fpath := filepath.Join(path, "file")
    	dpath := filepath.Join(path, "dir")
    
    	// Make a regular file and remove
    	fd, err := Create(file)
    	if err != nil {
    		t.Fatalf("create %q: %s", file, err)
    	}
    	fd.Close()
    	if err = RemoveAll(file); err != nil {
    		t.Fatalf("RemoveAll %q (first): %s", file, err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:21:29 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/signature.go

    					break
    				}
    				var cause string
    				switch u := T.under().(type) {
    				case *Basic:
    					// unsafe.Pointer is treated like a regular pointer
    					if u.kind == UnsafePointer {
    						cause = "unsafe.Pointer"
    					}
    				case *Pointer, *Interface:
    					cause = "pointer or interface type"
    				case *TypeParam:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            when:
            run(":util:impl:foo")
    
            then:
            fixture.assertProjectsConfigured(":", ":util", ":util:impl")
        }
    
        def "does not show configuration on demand incubating message in a regular mode"() {
            file("gradle.properties").text = "org.gradle.configureondemand=false"
            when:
            run()
            then:
            !output.contains("Configuration on demand is incubating")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  7. src/go/types/signature.go

    					break
    				}
    				var cause string
    				switch u := T.under().(type) {
    				case *Basic:
    					// unsafe.Pointer is treated like a regular pointer
    					if u.kind == UnsafePointer {
    						cause = "unsafe.Pointer"
    					}
    				case *Pointer, *Interface:
    					cause = "pointer or interface type"
    				case *TypeParam:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    These types shouldn't be confused with the standard Java link:{javaApi}/java/io/File.html[File] type as they are used to tell Gradle that you expect more specific values such as a directory or a non-directory, regular file.
    
    Gradle provides two specialized `Property` subtypes for dealing with values of these types:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  9. src/embed/embed.go

    	}
    	ofile, ok := file.(*openFile)
    	if !ok {
    		return nil, &fs.PathError{Op: "read", Path: name, Err: errors.New("is a directory")}
    	}
    	return []byte(ofile.f.data), nil
    }
    
    // An openFile is a regular file open for reading.
    type openFile struct {
    	f      *file // the file itself
    	offset int64 // current read offset
    }
    
    var (
    	_ io.Seeker   = (*openFile)(nil)
    	_ io.ReaderAt = (*openFile)(nil)
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. src/archive/tar/reader.go

    				gnuLongLink = p.parseString(realname)
    			}
    			continue // This is a meta header affecting the next header
    		default:
    			// The old GNU sparse format is handled here since it is technically
    			// just a regular file with additional attributes.
    
    			if err := mergePAX(hdr, paxHdrs); err != nil {
    				return nil, err
    			}
    			if gnuLongName != "" {
    				hdr.Name = gnuLongName
    			}
    			if gnuLongLink != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 01:59:14 UTC 2024
    - 26.8K bytes
    - Viewed (0)
Back to top