Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 347 for regular (0.14 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ClientModuleDependenciesResolveIntegrationTest.groovy

            buildFile << """
    repositories {
        ivy { url "${ivyHttpRepo.uri}" }
    }
    configurations {
        regular
        clientModule
    }
    dependencies {
        regular "group:projectA:1.2"
        clientModule module("group:projectA:1.2")
    }
    task listJars {
        doLast {
            assert configurations.regular.collect { it.name } == ['projectA-1.2.jar', 'projectA-1.2-extra.jar']
        }
    }
    task listClientModuleJars {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 03 18:15:26 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. src/html/template/js.go

    // nextJSCtx returns the context that determines whether a slash after the
    // given run of tokens starts a regular expression instead of a division
    // operator: / or /=.
    //
    // This assumes that the token run does not include any string tokens, comment
    // tokens, regular expression literal tokens, or division operators.
    //
    // This fails on some valid but nonsensical JavaScript programs like
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top