Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 48 for Ordinary (0.3 sec)

  1. src/cmd/go/internal/lockedfile/internal/filelock/filelock_windows.go

    )
    
    const (
    	reserved = 0
    	allBytes = ^uint32(0)
    )
    
    func lock(f File, lt lockType) error {
    	// Per https://golang.org/issue/19098, “Programs currently expect the Fd
    	// method to return a handle that uses ordinary synchronous I/O.”
    	// However, LockFileEx still requires an OVERLAPPED structure,
    	// which contains the file offset of the beginning of the lock range.
    	// We want to lock the entire file, so we leave the offset as zero.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 17 02:24:35 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/compilerFacility/compilation/classKinds.txt

        public final inner class Operation$Add
        public final inner class Operation$Negate
        public final inner class Operation$Subtract
    }
    
    public abstract class Ordinary {
        // source: 'classKinds.kt'
        public method <init>(): void
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Dec 21 15:34:34 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/cover_list.txt

    # build arguments (such as -cover, -covermode). See issue #57785.
    
    [short] skip
    [!GOEXPERIMENT:coverageredesign] skip
    
    env GOBIN=$WORK/bin
    
    # Install a target and then do an ordinary staleness check on it.
    go install m/example
    ! stale m/example
    
    # Run a second staleness check with "-cover" as a build flag. The
    # installed target should indeed be stale, since we didn't build it
    # with -cover.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 22:47:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. maven-settings-builder/src/main/java/org/apache/maven/settings/building/FileSettingsSource.java

     * under the License.
     */
    package org.apache.maven.settings.building;
    
    import java.io.File;
    
    import org.apache.maven.building.FileSource;
    
    /**
     * Wraps an ordinary {@link File} as a settings source.
     *
     *
     * @deprecated instead use {@link FileSource}
     */
    @Deprecated
    public class FileSettingsSource extends FileSource implements SettingsSource {
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultPathTranslator.java

                    // drive-relative Windows path, don't align with project directory but with drive root
                    result = file.getAbsolutePath();
                } else {
                    // an ordinary relative path, align with project directory
                    result = basedir.resolve(path).normalize().toString();
                }
            }
    
            return result;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. maven-settings-builder/src/main/java/org/apache/maven/settings/building/StringSettingsSource.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.settings.building;
    
    import org.apache.maven.building.StringSource;
    
    /**
     * Wraps an ordinary {@link CharSequence} as a settings source.
     *
     *
     * @deprecated instead use {@link StringSource}
     */
    @Deprecated
    public class StringSettingsSource extends StringSource implements SettingsSource {
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/build_acl_windows.txt

    cmp $WORK\exe-acl.txt $WORK\src-acl.txt
    
    # The file written to the guest-allowed directory should give Guests control.
    grep 'BUILTIN\\Guests\s+Allow' $WORK\guest-acl.txt
    
    # The file written to the ordinary directory should not.
    ! grep 'BUILTIN\\Guests\s+Allow' $WORK\exe-acl.txt
    
    
    -- TestACL/go.mod --
    module TestACL
    -- TestACL/main.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/path/DefaultPathTranslator.java

                    // drive-relative Windows path, don't align with project directory but with drive root
                    result = file.getAbsolutePath();
                } else {
                    // an ordinary relative path, align with project directory
                    result = basedir.resolve(path).normalize().toString();
                }
            }
    
            return result;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/configuration/BasedirBeanConfigurationPathTranslator.java

                    // drive-relative Windows path, don't align with base dir but with drive root
                    result = path.getAbsoluteFile();
                } else {
                    // an ordinary relative path, align with base dir
                    result = new File(new File(basedir, path.getPath()).toURI().normalize()).getAbsoluteFile();
                }
            }
    
            return result;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. maven-builder-support/src/main/java/org/apache/maven/building/UrlSource.java

     * under the License.
     */
    package org.apache.maven.building;
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.net.URL;
    import java.util.Objects;
    
    /**
     * Wraps an ordinary {@link URL} as a source.
     *
     */
    public class UrlSource implements Source {
    
        private final URL url;
    
        private final int hashCode;
    
        /**
         * Creates a new source backed by the specified URL.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top