Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for unnamed (0.11 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

    import org.apache.maven.api.Session;
    import org.apache.maven.api.VersionRange;
    import org.apache.maven.api.annotations.Nullable;
    import org.apache.maven.api.di.Inject;
    import org.apache.maven.api.di.Named;
    import org.apache.maven.api.di.Singleton;
    import org.apache.maven.api.feature.Features;
    import org.apache.maven.api.model.Activation;
    import org.apache.maven.api.model.ActivationFile;
    import org.apache.maven.api.model.Build;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  2. src/syscall/zerrors_linux_loong64.go

    	114: "operation already in progress",
    	115: "operation now in progress",
    	116: "stale file handle",
    	117: "structure needs cleaning",
    	118: "not a XENIX named type file",
    	119: "no XENIX semaphores available",
    	120: "is a named type file",
    	121: "remote I/O error",
    	122: "disk quota exceeded",
    	123: "no medium found",
    	124: "wrong medium type",
    	125: "operation canceled",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 82.5K bytes
    - Viewed (0)
  3. pkg/apis/certificates/validation/validation_test.go

    					TrustBundle: goodCert1Block,
    				},
    			},
    			wantErrors: field.ErrorList{
    				field.Invalid(field.NewPath("metadata", "name"), "look-ma-no-prefix", "ClusterTrustBundle for signerName k8s.io/foo must be named with prefix k8s.io:foo:"),
    			},
    		}, {
    			description: "invalid, with signer name, empty name suffix",
    			bundle: &capi.ClusterTrustBundle{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "k8s.io:foo:",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  4. src/runtime/pprof/pprof_test.go

    	switch runtime.GOOS {
    	case "darwin":
    		out, err := testenv.Command(t, "uname", "-a").CombinedOutput()
    		if err != nil {
    			t.Fatal(err)
    		}
    		vers := string(out)
    		t.Logf("uname -a: %v", vers)
    	case "plan9":
    		t.Skip("skipping on plan9")
    	case "wasip1":
    		t.Skip("skipping on wasip1")
    	}
    
    	broken := cpuProfilingBroken()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    			break
    		}
    	}
    	if !found {
    		t.Errorf("unexpected responses: %#v", test.Infos)
    	}
    }
    
    func TestFilePatternBuilderWhenFileLiteralExists(t *testing.T) {
    	const pathPattern = "../../artifacts/oddly-named-file[x].yaml"
    	b := newDefaultBuilder().
    		FilenameParam(false, &FilenameOptions{Recursive: false, Filenames: []string{pathPattern}}).
    		NamespaceParam("test").DefaultNamespace()
    
    	test := &testVisitor{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  6. src/encoding/json/decode_test.go

    	*Embed0a
    	*Embed0b `json:"e,omitempty"` // treated as named
    	Embed0c  `json:"-"`           // ignored
    	Loop
    	Embed0p // has Point with X, Y, used
    	Embed0q // has Point with Z, used
    	embed   // contains exported field
    }
    
    type Embed0 struct {
    	Level1a int // overridden by Embed0a's Level1a with json tag
    	Level1b int // used because Embed0a's Level1b is renamed
    	Level1c int // used because Embed0a's Level1c is ignored
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  7. src/time/format.go

    // The reference time used in these layouts is the specific time stamp:
    //
    //	01/02 03:04:05PM '06 -0700
    //
    // (January 2, 15:04:05, 2006, in time zone seven hours west of GMT).
    // That value is recorded as the constant named [Layout], listed below. As a Unix
    // time, this is 1136239445. Since MST is GMT-0700, the reference would be
    // printed by the Unix date command as:
    //
    //	Mon Jan 2 15:04:05 MST 2006
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ====
    <1> Gets a reference of type `Task` to the existing task named `check`
    <2> Registers a new untyped task named `myTask1`
    <3> Gets a reference to the existing task named `compileJava` of type `JavaCompile`
    <4> Registers a new task named `myCopy1` of type `Copy`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrBucketAlreadyOwnedByYou: {
    		Code:           "BucketAlreadyOwnedByYou",
    		Description:    "Your previous request to create the named bucket succeeded and you already own it.",
    		HTTPStatusCode: http.StatusConflict,
    	},
    	ErrInvalidDuration: {
    		Code:           "InvalidDuration",
    		Description:    "Duration provided in the request is invalid.",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/expr.go

    // Otherwise it leaves x alone.
    func (check *Checker) nonGeneric(T *target, x *operand) {
    	if x.mode == invalid || x.mode == novalue {
    		return
    	}
    	var what string
    	switch t := x.typ.(type) {
    	case *Alias, *Named:
    		if isGeneric(t) {
    			what = "type"
    		}
    	case *Signature:
    		if t.tparams != nil {
    			if enableReverseTypeInference && T != nil {
    				check.funcInst(T, x.Pos(), x, nil, true)
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
Back to top