Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,123 for 20something (0.53 sec)

  1. platforms/extensibility/test-kit/src/test/groovy/org/gradle/testkit/runner/internal/DefaultGradleRunnerTest.groovy

            new RuntimeException('Something went wrong')                                                                                  | 'Something went wrong'        | 'exception having no parent cause'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/VariantMetadataRules.java

            }
    
            @Override
            public void addAttributesAction(ImmutableAttributesFactory attributesFactory, VariantAction<? super AttributeContainer> action) {
                throw new UnsupportedOperationException("You are probably trying to add a variant attribute to something that wasn't supposed to be mutable");
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. test/fixedbugs/issue33013.dir/c.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package c
    
    import (
    	"./a"
    	"./b"
    )
    
    type BI interface {
    	Something(s int64) int64
    	Another(pxp a.G) int32
    }
    
    func BRS(sd *b.ServiceDesc, server BI, xyz int) *b.Service {
    	return b.RS(sd, server, 7)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 361 bytes
    - Viewed (0)
  4. .github/workflows/feedback.yml

      workflow_dispatch:
    
    permissions: {}
    
    jobs:
      feedback:
        permissions:
          issues: write
          pull-requests: write
        runs-on: ubuntu-latest
        steps:
          # Feedback loop: ask for something on PR/Issue and close if not provided or return to the queue on update.
          # https://github.com/gradle/issue-management-action/blob/main/src/feedback.ts
          - uses: gradle/issue-management-action@v1
            with:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 516 bytes
    - Viewed (1)
  5. src/runtime/pprof/label.go

    	if labels == nil {
    		return labelMap(nil)
    	}
    	return *labels
    }
    
    // labelMap is the representation of the label set held in the context type.
    // This is an initial implementation, but it will be replaced with something
    // that admits incremental immutable modification more efficiently.
    type labelMap map[string]string
    
    // String satisfies Stringer and returns key, value pairs in a consistent
    // order.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/config/config_test.go

    proxyMetadata:
      ANNOTATION: something
    drainDuration: 5s
    extraStatTags: ["b"]
    proxyStatsMatcher:
      inclusionPrefixes: ["a"]
      inclusionSuffixes: ["e"]
      inclusionRegexps: ["f"]
    `,
    			expect: func() *meshconfig.ProxyConfig {
    				m := mesh.DefaultProxyConfig()
    				m.DiscoveryAddress = "annotation:123"
    				m.ProxyMetadata = map[string]string{"ANNOTATION": "something", "SOME": "setting"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 13 11:53:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/AbstractVirtualFileSystemTest.groovy

                    return directory(location, [])
                } as Supplier<FileSystemLocationSnapshot>)
            }
            async {
                thread.blockUntil.snapshottingStarted
                vfs.invalidate(['/my/location/new/something'])
                instant.invalidated
            }
            then:
            instant.snapshottingStarted < instant.invalidated
            instant.invalidated < instant.snapshottingFinished
            !vfs.findSnapshot(location).present
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/BuildScriptErrorIntegrationTest.groovy

    """
            buildFile << """
    // Build script contains only methods
    def broken() {
        throw new RuntimeException('failure')
    }
    
    def doSomething() {
        broken()
    }
    """
            final childBuildFile = file("child/build.gradle")
            childBuildFile << """
        doSomething()
    """
    
            when:
            fails()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 17:01:37 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/JavaClassChangeIncrementalCompilationIntegrationTest.groovy

        def "can detect deletion of class used as method parameter type"() {
            //executer.requireOwnGradleUserHomeDir()  //use when debugging to bypass cache
    
            source "interface A { void doSomething(Deleted d); }"
            def deleted = source "interface Deleted { }"
            outputs.snapshot { run language.compileTaskName }
    
            expect:
            deleted.delete()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  10. pkg/fieldpath/fieldpath_test.go

    				},
    			},
    			expectedValue: "b70b3269-858e-12a8-9cf2-1232a194038a",
    		},
    		{
    			name:      "ok - label",
    			fieldPath: "metadata.labels['something']",
    			obj: &v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Labels: map[string]string{
    						"something": "label value",
    					},
    				},
    			},
    			expectedValue: "label value",
    		},
    		{
    			name:      "invalid expression",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 02 06:26:55 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top