Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 828 for regular (0.14 sec)

  1. pkg/kubelet/kubeletconfig/util/files/files.go

    )
    
    // FileExists returns true if a regular file exists at `path`, false if `path` does not exist, otherwise an error
    func FileExists(fs utilfs.Filesystem, path string) (bool, error) {
    	if info, err := fs.Stat(path); err == nil {
    		if info.Mode().IsRegular() {
    			return true, nil
    		}
    		return false, fmt.Errorf("expected regular file at %q, but mode is %q", path, info.Mode().String())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 13 01:02:46 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/snapshot/Snapshot.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot;
    
    /**
     * Snapshot directory or regular file.
     */
    public interface Snapshot {
    
        /**
         * Returns the hash of the snapshot.
         */
        String getHashValue();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 819 bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/TaskContainerExtensionsTest.kt

                }
    
                assertInferredTypeOf(
                    clean,
                    typeOf<TaskProvider<Task>>()
                )
            }
    
            tasks.apply {
                // regular syntax
                val clean by existing {
                }
                assertInferredTypeOf(
                    clean,
                    typeOf<TaskProvider<Task>>()
                )
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPluginTest.kt

                fun test() {
    
                    // Implicit SAM conversion in regular source
                    println(createK(String::class) { it.toUpperCase() })
                    println(create("FOO") { it.toLowerCase() })
    
                    // Implicit SAM with receiver conversion in regular source
                    applyActionTo("BAR") {
                        println(toLowerCase())
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/Scope.java

         */
        interface UserHome extends Global {}
    
        /**
         * These services are reused across build sessions.
         * <p>
         * Generally, one regular Gradle invocation is conceptually a session.
         * However, the GradleBuild task is currently implemented in such a way that it uses a discrete session.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. docs/distributed/SIZING.md

    If one or more drives are offline at the start of a PutObject or NewMultipartUpload operation the object will have additional data
    protection bits added automatically to provide the regular safety for these objects up to 50% of the number of drives.
    This will allow normal write operations to take place on systems that exceed the write tolerance.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top