Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for subname (0.32 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/schemas_test.go

    	//   required:
    	//     - name
    	//     - value
    	//   properties:
    	//     name:
    	//       type: string
    	//     nested:
    	//       type: object
    	//       properties:
    	//         subname:
    	//           type: string
    	//         flags:
    	//           type: object
    	//           additionalProperties:
    	//             type: boolean
    	//         dates:
    	//           type: array
    	//           items:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/test/groovy/org/gradle/api/tasks/wrapper/WrapperTest.groovy

            when:
            wrapper.setScriptFile("build/$inName")
    
            then:
            getProject().file("build/$outName") == wrapper.getBatchScript()
    
            where:
            inName           | outName
            "gradle.sh"      | "gradle.bat"
            "gradle-wrapper" | "gradle-wrapper.bat"
        }
    
        def "determines properties file path from jar path"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDSLCustomDependenciesExtensionsSpec.groovy

                        conf(baseMethod("base:name:1.0"))
                        conf(subMethod("sub:name:1.0"))
                    }
                }
            """
            file("settings.gradle") << defineSettings(typeSafeProjectAccessors)
    
            expect:
            succeeds("build")
            outputContains("base:name:1.0")
            outputContains("sub:name:1.0")
    
            where:
            typeSafeProjectAccessors << [true, false]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 10:11:12 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java

            this.setVersion(original.getVersion());
            this.setGoalPrefix(original.getGoalPrefix());
            this.setInheritedByDefault(original.isInheritedByDefault());
            this.setName(original.getName());
            this.setDescription(original.getDescription());
            this.setRequiredMavenVersion(original.getRequiredMavenVersion());
            this.setRequiredJavaVersion(original.getRequiredJavaVersion());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Apr 14 17:14:22 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. pkg/controller/job/indexed_job_utils_test.go

    	cases := map[string]struct {
    		jobname             string
    		index               int
    		wantPodGenerateName string
    	}{
    		"short job name": {
    			jobname:             "indexed-job",
    			index:               1,
    			wantPodGenerateName: "indexed-job-1-",
    		},
    		"job name exceeds MaxGeneneratedNameLength": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. src/go/internal/gcimporter/gcimporter_test.go

    	cmd := testenv.Command(t, testenv.GoToolPath(t), "tool", "compile", "-p", pkgpath, "-D", "testdata", "-importcfg", importcfgfile, "-o", outname, filename)
    	cmd.Dir = dirname
    	out, err := cmd.CombinedOutput()
    	if err != nil {
    		t.Logf("%s", out)
    		t.Fatalf("go tool compile %s failed: %s", filename, err)
    	}
    	return outname
    }
    
    func testPath(t *testing.T, path, srcDir string) *types.Package {
    	t0 := time.Now()
    	fset := token.NewFileSet()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. pkg/scheduler/testing/wrappers.go

    }
    
    // Obj returns the inner Pod.
    func (p *PodWrapper) Obj() *v1.Pod {
    	return &p.Pod
    }
    
    // Name sets `s` as the name of the inner pod.
    func (p *PodWrapper) Name(s string) *PodWrapper {
    	p.SetName(s)
    	return p
    }
    
    // UID sets `s` as the UID of the inner pod.
    func (p *PodWrapper) UID(s string) *PodWrapper {
    	p.SetUID(types.UID(s))
    	return p
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  8. src/net/net_windows_test.go

    		// and we can match at least one of those names,
    		// let's ignore the other names.
    		if dupNames, ok := dups[wantAddr]; ok && len(dupNames) > 1 {
    			for _, dupName := range dupNames {
    				if haveAddr, ok := have[dupName]; ok && haveAddr == wantAddr {
    					continue nextWant
    				}
    			}
    		}
    		t.Errorf("getmac lists %q, but it could not be found among Go interfaces %v", name, have)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

            pluginDescriptor.setArtifactId(extractArtifactId(c));
            pluginDescriptor.setVersion(extractVersion(c));
            pluginDescriptor.setGoalPrefix(extractGoalPrefix(c));
    
            pluginDescriptor.setName(extractName(c));
            pluginDescriptor.setDescription(extractDescription(c));
    
            pluginDescriptor.setIsolatedRealm(extractIsolatedRealm(c));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    		ix := bytes.Index(out[:], gthc)
    		if ix == -1 {
    			err = fmt.Errorf("BPX4GTH: gthc return data not found")
    			return
    		}
    		jn := out[ix+80 : ix+88] // we didn't declare Pgthc, but jobname is 8-byte at offset 80
    		E2a(jn)
    		jobname = string(bytes.TrimRight(jn, " "))
    
    	} else {
    		err = fmt.Errorf("BPX4GTH: rc=%d errno=%d reason=code=0x%x", rv, rc, rn)
    	}
    	return
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top