Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,084 for mkmeta (0.08 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyModuleResolveMetadataBuilderTest.groovy

        def meta = new IvyModuleResolveMetaDataBuilder(md, new IvyModuleDescriptorConverter(new DefaultImmutableModuleIdentifierFactory()), ivyMetadataFactory)
    
        def "adds correct artifact to meta-data"() {
            def a = ivyArtifact("foo", "jar", "ext", "classifier")
            md.addConfiguration(new Configuration("runtime"))
    
            when: meta.addArtifact(a, newHashSet("runtime"))
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. src/internal/coverage/rtcov/rtcov.go

    	slot := len(Meta.List)
    	Meta.List = append(Meta.List, CovMetaBlob{
    		P:                  (*byte)(p),
    		Len:                dlen,
    		Hash:               hash,
    		PkgPath:            pkgpath,
    		PkgID:              pkgid,
    		CounterMode:        cmode,
    		CounterGranularity: cgran,
    	})
    	if pkgid != -1 {
    		if Meta.PkgMap == nil {
    			Meta.PkgMap = make(map[int]int)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. docs/debugging/README.md

    ```
    
    ### Using xl-meta
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 25 01:17:53 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  4. api/api-rules/aggregator_violation_exceptions.list

    API rule violation: names_match,k8s.io/apimachinery/pkg/apis/meta/v1,APIResourceList,APIResources
    API rule violation: names_match,k8s.io/apimachinery/pkg/apis/meta/v1,Duration,Duration
    API rule violation: names_match,k8s.io/apimachinery/pkg/apis/meta/v1,InternalEvent,Object
    API rule violation: names_match,k8s.io/apimachinery/pkg/apis/meta/v1,InternalEvent,Type
    API rule violation: names_match,k8s.io/apimachinery/pkg/apis/meta/v1,MicroTime,Time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:20 UTC 2023
    - 784 bytes
    - Viewed (0)
  5. api/api-rules/sample_apiserver_violation_exceptions.list

    API rule violation: names_match,k8s.io/apimachinery/pkg/apis/meta/v1,APIResourceList,APIResources
    API rule violation: names_match,k8s.io/apimachinery/pkg/apis/meta/v1,Duration,Duration
    API rule violation: names_match,k8s.io/apimachinery/pkg/apis/meta/v1,InternalEvent,Object
    API rule violation: names_match,k8s.io/apimachinery/pkg/apis/meta/v1,InternalEvent,Type
    API rule violation: names_match,k8s.io/apimachinery/pkg/apis/meta/v1,MicroTime,Time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:22 UTC 2023
    - 784 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/util.go

    	}
    }
    
    func NamespaceKeyFunc(prefix string, obj runtime.Object) (string, error) {
    	meta, err := meta.Accessor(obj)
    	if err != nil {
    		return "", err
    	}
    	name := meta.GetName()
    	if msgs := path.IsValidPathSegmentName(name); len(msgs) != 0 {
    		return "", fmt.Errorf("invalid name: %v", msgs)
    	}
    	return prefix + "/" + meta.GetNamespace() + "/" + name, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:05:06 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/vcstest/go/test1-svn-git.txt

    <!DOCTYPE html>
    <html>
    <meta name="go-import" content="vcs-test.golang.org/go/test1-svn-git svn https://vcs-test.golang.org/svn/test1-svn-git">
    -- git-README-only/index.html --
    <!DOCTYPE html>
    <html>
    <meta name="go-import" content="vcs-test.golang.org/go/test1-svn-git/git-README-only git https://vcs-test.golang.org/git/README-only">
    -- git-README-only/other/index.html --
    <!DOCTYPE html>
    <html>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:22:22 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/vcstest/go/test2-svn-git.txt

    <!DOCTYPE html>
    <html>
    <meta name="go-import" content="vcs-test.golang.org/go/test2-svn-git/test2main git https://vcs-test.golang.org/git/test2main">
    -- test2pkg/index.html --
    <!DOCTYPE html>
    <html>
    <meta name="go-import" content="vcs-test.golang.org/go/test2-svn-git/test2pkg git https://vcs-test.golang.org/git/README-only">
    -- test2pkg/pkg/index.html --
    <!DOCTYPE html>
    <html>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:22:22 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/api/meta/testrestmapper/test_restmapper.go

    			kindPriority = append(kindPriority, availableVersions[0].WithKind(meta.AnyKind))
    		}
    	}
    	for _, group := range groups {
    		resourcePriority = append(resourcePriority, schema.GroupVersionResource{Group: group, Version: meta.AnyVersion, Resource: meta.AnyResource})
    		kindPriority = append(kindPriority, schema.GroupVersionKind{Group: group, Version: meta.AnyVersion, Kind: meta.AnyKind})
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 06 09:07:02 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/conversion/converter.go

    	return s.converter.Convert(src, dest, s.meta)
    }
    
    // Meta returns the meta object that was originally passed to Convert.
    func (s *scope) Meta() *Meta {
    	return s.meta
    }
    
    // RegisterUntypedConversionFunc registers a function that converts between a and b by passing objects of those
    // types to the provided function. The function *must* accept objects of a and b - this machinery will not enforce
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 7.4K bytes
    - Viewed (0)
Back to top