Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for catalog (0.68 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_settings_files.adoc

    [source,kotlin]
    ----
    dependencyResolutionManagement {
        repositoriesMode.set(RepositoriesMode.PREFER_PROJECT)
        repositories {
            mavenCentral()
        }
    }
    ----
    
    You can also include version catalogs in this section.
    
    === 5. Add subprojects to the build
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 04:15:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. pkg/bootstrap/option/instances.go

    }
    
    func ZipkinAddress(value string) Instance {
    	return newOptionOrSkipIfZero("zipkin", value).withConvert(addressConverter(value))
    }
    
    func DataDogAddress(value string) Instance {
    	return newOptionOrSkipIfZero("datadog", value).withConvert(addressConverter(value))
    }
    
    func StatsdAddress(value string) Instance {
    	return newOptionOrSkipIfZero("statsd", value).withConvert(addressConverter(value))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. pkg/envoy/proxy.go

    	if err != nil {
    		return "", fmt.Errorf("failed to read file: %s, %v", fname, err)
    	}
    
    	// Replace host with HOST_IP env var if it is "$(HOST_IP)".
    	// This is to support some tracer setting (Datadog, Zipkin), where "$(HOST_IP)" is used for address.
    	b = bytes.ReplaceAll(b, []byte("$(HOST_IP)"), []byte(HostIP))
    	converted, err := yaml.YAMLToJSON(b)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/upgrade/versiongetter.go

    	// common.go#getClient()
    	// The problem here is that during upgrade dry-run client reactors are backed by a dynamic client
    	// via NewClientBackedDryRunGetterFromKubeconfig() and for GetActions there seems to be no analog to
    	// Discovery().Serverversion() resource for a dynamic client(?).
    	fakeclientDiscovery, ok := g.client.Discovery().(*fakediscovery.FakeDiscovery)
    	if ok {
    		clusterVersionInfo = fakeclientDiscovery.FakedServerVersion
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. src/go/types/mono.go

    	}
    }
    
    // assign records that tpar was instantiated as targ at pos.
    func (w *monoGraph) assign(pkg *Package, pos token.Pos, tpar *TypeParam, targ Type) {
    	// Go generics do not have an analog to C++`s template-templates,
    	// where a template parameter can itself be an instantiable
    	// template. So any instantiation cycles must occur within a single
    	// package. Accordingly, we can ignore instantiations of imported
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/mono.go

    	}
    }
    
    // assign records that tpar was instantiated as targ at pos.
    func (w *monoGraph) assign(pkg *Package, pos syntax.Pos, tpar *TypeParam, targ Type) {
    	// Go generics do not have an analog to C++`s template-templates,
    	// where a template parameter can itself be an instantiable
    	// template. So any instantiation cycles must occur within a single
    	// package. Accordingly, we can ignore instantiations of imported
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top