Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 428 for typed (0.04 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProcessor.java

    import org.apache.maven.model.io.ModelParseException;
    import org.apache.maven.model.io.ModelReader;
    import org.apache.maven.model.locator.ModelLocator;
    import org.eclipse.sisu.Typed;
    
    /**
     *
     * Note: uses @Typed to limit the types it is available for injection to just ModelProcessor.
     *
     * This is because the ModelProcessor interface extends ModelLocator and ModelReader. If we
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/extract_test.go

    const schemaYAML = typed.YAMLObject(`types:
    - name: io.k8s.api.apps.v1.Deployment
      map:
        fields:
        - name: apiVersion
          type:
            scalar: string
        - name: kind
          type:
            scalar: string
        - name: metadata
          type:
            namedType: io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta
        - name: spec
          type:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 22 22:32:45 UTC 2021
    - 8.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/resource/builder_example_test.go

      metadata:
        name: validating4
    ---
    `
    
    // ExampleNewLocalBuilderLoad demonstrates using a local resource builder to read typed resources from a manifest
    func ExampleNewLocalBuilder() {
    	// Create a local builder...
    	builder := resource.NewLocalBuilder().
    		// Configure with a scheme to get typed objects in the versions registered with the scheme.
    		// As an alternative, could call Unstructured() to get unstructured objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. releasenotes/notes/42365.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 13 01:08:07 UTC 2022
    - 202 bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultArtifactManager.java

    import org.apache.maven.api.di.SessionScoped;
    import org.apache.maven.api.services.ArtifactManager;
    import org.apache.maven.project.MavenProject;
    import org.eclipse.sisu.Typed;
    
    import static org.apache.maven.internal.impl.Utils.nonNull;
    
    @Named
    @Typed
    @SessionScoped
    public class DefaultArtifactManager implements ArtifactManager {
    
        @Nonnull
        private final InternalMavenSession session;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. src/sync/atomic/value_test.go

    	{init: nil, new: true, old: "", err: "sync/atomic: compare and swap of inconsistently typed values into Value"},
    	{init: nil, new: true, old: true, want: false, err: nil},
    	{init: nil, new: true, old: nil, want: true, err: nil},
    	{init: true, new: "", err: "sync/atomic: compare and swap of inconsistently typed value into Value"},
    	{init: true, new: true, old: false, want: false, err: nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelProcessor.java

    /**
     *
     * Note: uses @Typed to limit the types it is available for injection to just ModelProcessor.
     *
     * This is because the ModelProcessor interface extends ModelLocator and ModelReader. If we
     * made this component available under all its interfaces then it could end up being injected
     * into itself leading to a stack overflow.
     *
     * A side effect of using @Typed is that it translates to explicit bindings in the container.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. test/fixedbugs/issue19743.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package foo
    
    // Escape analysis needs to treat the uintptr-typed reflect.*Header fields as pointers.
    
    import (
    	"reflect"
    	"unsafe"
    )
    
    type immutableBytes []byte
    
    // Bug was failure to leak param b.
    func toString(b immutableBytes) string { // ERROR "leaking param: b$"
    	var s string
    	if len(b) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:34:03 UTC 2019
    - 669 bytes
    - Viewed (0)
  9. test/fixedbugs/issue45344.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 45344: expand_calls does not handle direct interface
    // typed argument well.
    
    package p
    
    type T struct {
    	a map[int]int
    }
    
    func F(t T) {
    	G(t)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 02 00:45:56 UTC 2021
    - 350 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Code generated by client-gen. DO NOT EDIT.
    
    // This package has the automatically generated typed clients.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 08 09:52:48 UTC 2018
    - 687 bytes
    - Viewed (0)
Back to top