Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 792 for regular (0.36 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemLocationSnapshot.java

    import java.util.Optional;
    
    /**
     * A snapshot of a single location on the file system.
     *
     * We know everything about this snapshot, including children and Merkle hash.
     *
     * The snapshot can be a snapshot of a regular file or of a whole directory tree.
     * The file at the location is not required to exist (see {@link MissingFileSnapshot}).
     */
    public interface FileSystemLocationSnapshot extends FileSystemSnapshot, FileSystemNode, MetadataSnapshot {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 15:09:45 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. pkg/api/v1/resource/helpers_test.go

    						v1.ResourceCPU: resource.MustParse("2"),
    					},
    				},
    			},
    		},
    		{
    			description: "restartable init container",
    			expectedRequests: v1.ResourceList{
    				// restartable init + regular container
    				v1.ResourceCPU: resource.MustParse("2"),
    			},
    			initContainers: []v1.Container{
    				{
    					Name:          "restartable-init-1",
    					RestartPolicy: &restartAlways,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:13 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/cover.bash

    # example:
    #
    #     ./cover.bash && go tool cover -html=cover.out
    #
    # This script is needed to set up a temporary test file, so that we don't break
    # regular 'go run .' usage to run the generator.
    
    cat >main_test.go <<-EOF
    	//go:build ignore
    
    	package main
    
    	import "testing"
    
    	func TestCoverage(t *testing.T) { main() }
    EOF
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 664 bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDebugLogger.java

                logger.debug("Tasks:   " + projectBuild.getTaskSegment().getTasks());
                logger.debug("Style:   " + (projectBuild.getTaskSegment().isAggregating() ? "Aggregating" : "Regular"));
    
                if (it.hasNext()) {
                    logger.debug("-----------------------------------------------------------------------");
                }
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. pkg/util/filesystem/util_test.go

    			listenOnSocket: true,
    			expectSocket:   true,
    			expectError:    false,
    		},
    		{
    			label:       "Non Existent file",
    			invalidFile: true,
    			expectError: true,
    		},
    		{
    			label:          "Regular file",
    			listenOnSocket: false,
    			expectSocket:   false,
    			expectError:    false,
    		},
    	}
    	for _, test := range tests {
    		f, err := os.CreateTemp("", "test-domain-socket")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. src/html/template/js_test.go

    		{jsCtxRegexp, "return\t"},
    		{jsCtxRegexp, "return\n"},
    		{jsCtxRegexp, "return\u2028"},
    		// Identifiers can be divided and cannot validly be preceded by
    		// a regular expressions. Semicolon insertion cannot happen
    		// between an identifier and a regular expression on a new line
    		// because the one token lookahead for semicolon insertion has
    		// to conclude that it could be a div binary op and treat it as
    		// such.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/inline/inlheur/testdata/dumpscores.go

    	return noninl(-x)
    }
    
    //go:noinline
    func noninl(x int) int {
    	return x + 1
    }
    
    func tooLargeToInline(x int) int {
    	if x > 101 {
    		// Drive up the cost of inlining this func over the
    		// regular threshold.
    		return big(big(big(big(big(G + x)))))
    	}
    	if x < 100 {
    		// make sure this callsite is scored properly
    		G += inlinable(101, inlinable2)
    		if G == 101 {
    			return 0
    		}
    		panic(inlinable2(3))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 14:26:26 UTC 2023
    - 794 bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/project/interpolation/RegexBasedModelInterpolator.java

    import java.util.Properties;
    
    import org.apache.maven.project.path.PathTranslator;
    import org.codehaus.plexus.interpolation.Interpolator;
    import org.codehaus.plexus.interpolation.RegexBasedInterpolator;
    
    /**
     * Use a regular expression search to find and resolve expressions within the POM.
     *
     * TODO Consolidate this logic with the PluginParameterExpressionEvaluator, minus deprecations/bans.
     */
    @Deprecated
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/file/RegularFileProperty.java

    package org.gradle.api.file;
    
    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.provider.Provider;
    
    import javax.annotation.Nullable;
    import java.io.File;
    
    /**
     * Represents some configurable regular file location, whose value is mutable.
     *
     * <p>
     * You can create a {@link RegularFileProperty} using {@link ObjectFactory#fileProperty()}.
     * </p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 10 18:00:11 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. src/go/parser/error_test.go

    //
    // Expected errors are indicated in the test files by putting a comment
    // of the form /* ERROR "rx" */ immediately following an offending token.
    // The harness will verify that an error matching the regular expression
    // rx is reported at that source position.
    //
    // For instance, the following test file indicates that a "not declared"
    // error should be reported for the undeclared variable x:
    //
    //	package p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 19:47:49 UTC 2022
    - 5.9K bytes
    - Viewed (0)
Back to top