Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 231 for notbar (0.12 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/functionParamInBinaryModule.ir.txt

          BLOCK_BODY
            CALL 'public final fun Scaffold (topBar: @[MyComposable] kotlin.Function0<kotlin.Unit>, bottomBar: @[MyComposable] kotlin.Function0<kotlin.Unit>): kotlin.Unit declared in p3' type=kotlin.Unit origin=null
              topBar: FUN_EXPR type=kotlin.Function0<kotlin.Unit> origin=LAMBDA
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 22 12:26:50 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/derived/MultiProjectVariantResolutionIntegrationTest.groovy

                            withVariantReselection()
                            attributes {
                                attribute(Attribute.of('other', String), 'foobar')
                            }
                        }.files)
                    }
                    
                    tasks.register('resolveAll', Resolve) {
                        artifacts.from(configurations.producerArtifacts)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/mavenMigration/profiles/tests/greeting-default.out

    foobar...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7 bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/ProjectConfigurationIntegrationTest.groovy

        def "accessing the task by path from containing project is safe"() {
            buildFile << """
                task foobar
                println "the name: " + tasks.getByPath(":foobar").name
            """
    
            when:
            run()
    
            then:
            output.contains "the name: foobar"
        }
    
        @ToBeFixedForIsolatedProjects(because = "allprojects, evaluationDependsOn")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/mavenMigration/profiles/kotlin/profile-default.gradle.kts

    val message by extra("foobar")  // <4>...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 39 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/mavenMigration/profiles/groovy/profile-default.gradle

    ext.message = 'foobar'  // <4>...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 31 bytes
    - Viewed (0)
  7. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/JavaPlatformResolveIntegrationTest.groovy

                api 'org:foo:1.0'
            }
    """)
            def foobaz = mavenHttpRepo.module('org', 'foobaz', '1.0').publish()
            def foobar = mavenHttpRepo.module('org', 'foobar', '1.0').publish()
            def foo = mavenHttpRepo.module('org', 'foo', '1.0').dependsOn(foobar).dependsOn(foobaz).publish()
            def platformGMM = mavenHttpRepo.module("org", "other-platform", "1.0")
                .asGradlePlatform()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_metrics_test.go

    		name          string
    		volumeID      string
    		targetPath    string
    		expectSuccess bool
    	}{
    		{
    			name:          "with valid name and volume id",
    			expectSuccess: true,
    			volumeID:      "foobar",
    			targetPath:    "/mnt/foo",
    		},
    	}
    
    	for _, tc := range tests {
    		metricsGetter := &metricsCsi{volumeID: tc.volumeID, targetPath: tc.targetPath}
    		metricsGetter.csiClient = &csiDriverClient{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/ipset/ipset_test.go

    		},
    	}
    	runner := New(fexec)
    	// Success.
    	err := runner.FlushSet("FOOBAR")
    	if err != nil {
    		t.Errorf("expected success, got %v", err)
    	}
    	if fcmd.CombinedOutputCalls != 1 {
    		t.Errorf("expected 1 CombinedOutput() calls, got %d", fcmd.CombinedOutputCalls)
    	}
    	if !sets.NewString(fcmd.CombinedOutputLog[0]...).HasAll("ipset", "flush", "FOOBAR") {
    		t.Errorf("wrong CombinedOutput() log, got %s", fcmd.CombinedOutputLog[0])
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/TaskContainerIntegrationTest.groovy

                    assert task.path in [':foo']
                }
    
                tasks.register("foo", Copy)
                tasks.register("bar", Copy)
                tasks.register("foobar", Delete)
                tasks.register("barfoo", Delete)
            """
            expect:
            succeeds "help"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/9446")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 07:46:00 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top