Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 347 for regular (0.21 sec)

  1. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectCollectionExtensionsTest.kt

                inOrder(elementProvider) {
                    verifyNoMoreInteractions()
                }
            }
    
            container.apply {
                // regular syntax
                val domainObject by existing
                assertThat(domainObject, sameInstance(elementProvider))
            }
        }
    
        @Test
        fun `val domainObject by existing { }`() {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  2. pkg/kubelet/status/generate_test.go

    				InitContainers: []v1.Container{
    					{Name: "restartable-init-1", RestartPolicy: &containerRestartPolicyAlways},
    				},
    				Containers: []v1.Container{
    					{Name: "regular-1"},
    				},
    			},
    			containerStatuses: []v1.ContainerStatus{
    				getReadyStatus("regular-1"),
    			},
    			podPhase:    v1.PodRunning,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 15:18:11 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/caching/ComponentMetadataSupplierRuleExecutorTest.groovy

            }
            0 * _
    
            where:
            scenario                                           | changing | mustRefresh | expired | ruleClass
            'regular module caching'                           | false    | false       | false   | TestSupplier
            'regular module caching (--refresh-dependencies)'  | false    | true        | false   | TestSupplier
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/ant-task-migration.graffle

    ansi\ansicpg1252\cocoartf1671 {\fonttbl\f0\fnil\fcharset0 Menlo-Regular;} {\colortbl;\red255\green255\blue255;} {\*\expandedcolortbl;;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc\partightenfactor0 \f0\fs24 \cf0 assemble}Bounds{{383.5, 146}, {100.25, 43}}ClassShapedGraphicFo-RegularSize12ID17Sty{\rtf1\ansi\ansicpg1252\cocoartf1671 {\fonttbl\f0\fnil\fcharset0 Menlo-Regular;} {\colortbl;\red255\green255\blue255;} {\*\expandedcolortbl;;}...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/caching/ComponentMetadataRuleExecutorTest.groovy

            }
            0 * _
    
            where:
            scenario                                           | changing | mustRefresh | expired | ruleClass
            'regular module caching'                           | false    | false       | false   | TestSupplier
            'regular module caching (--refresh-dependencies)'  | false    | true        | false   | TestSupplier
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/regexp/regexp.go

    // of the regular expression re. It returns the boolean true if the
    // literal string comprises the entire regular expression.
    func (re *Regexp) LiteralPrefix() (prefix string, complete bool) {
    	return re.prefix, re.prefixComplete
    }
    
    // MatchReader reports whether the text returned by the [io.RuneReader]
    // contains any match of the regular expression re.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishArtifactCustomizationIntegTest.groovy

                }
            }
    
            and:
            resolveArtifacts(module) {
                classifier = 'regular'
                ext = 'txt'
                withModuleMetadata {
                    noComponentPublished()
                }
                withoutModuleMetadata {
                    expectFiles "projectText-1.0-regular.txt"
                }
            }
        }
    
        def "can attach custom file artifacts with map notation"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  8. pkg/kubelet/kubeletconfig/util/files/files_test.go

    			return err
    		}
    		if !info.IsDir() {
    			return fmt.Errorf("expected directory, got mode %s", info.Mode().String())
    		}
    	} else if f.mode.IsRegular() {
    		info, err := fs.Stat(path)
    		if err != nil {
    			return err
    		}
    		if !info.Mode().IsRegular() {
    			return fmt.Errorf("expected regular file, got mode %s", info.Mode().String())
    		}
    		data, err := fs.ReadFile(path)
    		if err != nil {
    			return err
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 07 11:36:13 UTC 2022
    - 11.7K bytes
    - Viewed (0)
  9. cni/pkg/install/cniconfig_test.go

    			inFilename:      "empty.conf",
    		},
    		{
    			name:            "regular file",
    			dir:             tempDir,
    			expectedFailure: false,
    			inFilename:      "regular.conf",
    			outFilename:     "regular.conf",
    			fileContents: `
    {
    	"cniVersion": "0.3.1",
    	"name": "istio-cni",
    	"type": "istio-cni"
    }`,
    		},
    		{
    			name:            "another regular file",
    			dir:             tempDir,
    			expectedFailure: false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishArtifactCustomizationIntegTest.groovy

            and:
            def ivy = module.parsedIvy
            ivy.expectArtifact("ivyPublish", "war").hasType("web-archive").hasConf(["*"])
            ivy.expectArtifact("docs", "htm").hasType("html").hasConf(null)
            ivy.expectArtifact("customFile", "txt", "classified").hasType("txt").hasConf(["foo", "bar"])
            ivy.expectArtifact("regular", "txt").hasType("reg").hasConf(null)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.3K bytes
    - Viewed (0)
Back to top