Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for spcs (0.1 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container.go

    // kubelet restart.
    // To solve this problem, we've already written necessary information into container labels. Here we
    // just need to retrieve them from container labels and restore the specs.
    // TODO(random-liu): Add a node e2e test to test this behaviour.
    // TODO(random-liu): Change the lifecycle handler to just accept information needed, so that we can
    // just pass the needed function not create the fake object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    Skipping a test via the build script can be done a few ways. One common approach is to make test execution conditional via the link:{groovyDslPath}/org.gradle.api.Task.html#org.gradle.api.Task:onlyIf(java.lang.String,org.gradle.api.specs.Spec)[Task.onlyIf(String, org.gradle.api.specs.Spec)] method. The following sample skips the `test` task if the project has a property called `mySkipTests`:
    
    .Skipping the unit tests based on a project property
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.excludes.ModuleExclusions;
    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.excludes.specs.ExcludeSpec;
    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.DependencyGraphNode;
    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.ResolvedGraphVariant;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context_test.go

    			g := NewWithT(t)
    			g.Expect(isVisible).To(Equal(c.expect))
    		})
    	}
    }
    
    func serviceNames(svcs []*Service) []string {
    	var s []string
    	for _, ss := range svcs {
    		s = append(s, string(ss.Hostname))
    	}
    	sort.Strings(s)
    	return s
    }
    
    func TestInitPushContext(t *testing.T) {
    	env := NewEnvironment()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf.go

    		// different units.
    		sval := d.ldr.SymValue(sym)
    		u0val := d.ldr.SymValue(loader.Sym(unit.Textp[0]))
    		if prevUnit != unit {
    			unit.PCs = append(unit.PCs, dwarf.Range{Start: sval - u0val})
    			prevUnit = unit
    		}
    		unit.PCs[len(unit.PCs)-1].End = sval - u0val + int64(len(d.ldr.Data(sym)))
    	}
    }
    
    func movetomodule(ctxt *Link, parent *dwarf.DWDie) {
    	die := ctxt.runtimeCU.DWInfo.Child
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. src/go/parser/parser.go

    		if p.tok == token.LBRACK {
    			// embedded instantiated interface
    			typ = p.parseTypeInstance(typ)
    		}
    	}
    
    	// Comment is added at the callsite: the field below may joined with
    	// additional type specs using '|'.
    	// TODO(rfindley) this should be refactored.
    	// TODO(rfindley) add more tests for comment handling.
    	return &ast.Field{Doc: doc, Names: idents, Type: typ}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

    import org.gradle.api.internal.tasks.DefaultTaskDependencyFactory
    import org.gradle.api.internal.tasks.TaskDependencyResolveContext
    import org.gradle.api.internal.tasks.TaskResolver
    import org.gradle.api.specs.Spec
    import org.spockframework.lang.Wildcard
    
    import java.util.concurrent.Callable
    import java.util.function.Consumer
    import java.util.function.Supplier
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

    import org.gradle.api.internal.initialization.RootScriptDomainObjectContext
    import org.gradle.api.internal.project.ProjectStateRegistry
    import org.gradle.api.internal.tasks.TaskDependencyResolveContext
    import org.gradle.api.specs.Spec
    import org.gradle.api.tasks.TaskDependency
    import org.gradle.internal.Factories
    import org.gradle.internal.code.UserCodeApplicationContext
    import org.gradle.internal.component.external.model.DefaultModuleComponentIdentifier
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

                }
            '''.stripIndent()
    
            when:
            run 'copy'
    
            then:
            !file('dest/two.b').readLines().iterator().hasNext()
        }
    
        def "nested specs and details arent extensible objects"() {
            given:
            file("a/a.txt").touch()
    
            buildScript """
                task copy(type: Copy) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  10. src/go/types/api_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// map import paths to importDecl
    	imports := make(map[string]*ast.ImportSpec)
    	for _, s := range f.Decls[0].(*ast.GenDecl).Specs {
    		if imp, _ := s.(*ast.ImportSpec); imp != nil {
    			imports[imp.Path.Value] = imp
    		}
    	}
    
    	for _, test := range tests {
    		imp := imports[test.path]
    		if imp == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top