Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 365 for regular (0.47 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultFilePropertyFactoryTest.groovy

            dirVar.set((File) null)
            !dirVar.present
            dirVar.getOrNull() == null
            !fileProvider.present
            fileProvider.getOrNull() == null
        }
    
        def "can create regular file property"() {
            def pathProvider = Stub(ProviderInternal)
            _ * pathProvider.get() >> { "../some-file" }
            _ * pathProvider.present >> true
            def otherFile = tmpDir.file("some-file")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. src/os/types_windows.go

    			// raw device files on Linux, POSIX FIFO special files, and so on), so
    			// to avoid files changing unpredictably from regular to irregular we will
    			// consider DEDUP files to be close enough to regular to treat as such.
    		default:
    			m |= ModeIrregular
    		}
    	}
    	return
    }
    
    // modePreGo1_23 returns the FileMode for the fileStat, using the pre-Go 1.23
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. operator/pkg/validate/common.go

    	if err == nil {
    		msg += ": OK\n"
    	} else {
    		msg += fmt.Sprintf(": %v\n", err)
    	}
    	scope.Debug(msg)
    }
    
    // match compiles the string to a regular expression.
    var match = regexp.MustCompile
    
    // literal compiles s into a literal regular expression, escaping any regexp
    // reserved characters.
    func literal(s string) *regexp.Regexp {
    	re := match(regexp.QuoteMeta(s))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/plugins/PluginBuildsIntegrationTest.groovy

                    id("${pluginBuild.projectPluginId}") version "2.0"
                }
            """
    
            then:
            succeeds()
            pluginBuild.assertProjectPluginApplied()
        }
    
        def "regular included build can not contribute settings plugins"() {
            given:
            def pluginBuild = pluginBuild("build-logic")
            settingsFile << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 06 08:15:28 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/g3doc/tf_dialects.md

    of the same name.
    
    ### Example:
    
    Below is an example of a function operating on the TensorFlow dialect:
    
    ```mlir {.mlir}
    /// This is a regular function, taking inputs by value and returning a new value.
    /// The body is a regular CFG.
    func some_function(%input : tensor<*xf32>) -> tensor<*xf32> {
      // TensorFlow operations are not variadic: this `tf.add` operation always
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 16K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  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-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultFileSystemAccessTest.groovy

            allowFileSystemAccess(false)
            def subDir = someDir.file("sub")
            snapshot = read(subDir)
            then:
            assertIsDirectorySnapshot(snapshot, subDir)
        }
    
        def "invalidate regular file"() {
            def parentDir = temporaryFolder.file("in/some")
            def someFile = parentDir.file("directory/somefile.txt").createFile()
            when:
            allowFileSystemAccess(true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 10K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //
    //   bool KilledBySIGHUP(int exit_code) {
    //     return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP;
    //   }
    //
    //   ASSERT_EXIT(client.HangUpServer(), KilledBySIGHUP, "Hanging up!");
    //
    // On the regular expressions used in death tests:
    //
    //   On POSIX-compliant systems (*nix), we use the <regex.h> library,
    //   which uses the POSIX extended regex syntax.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top