Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,262 for addOne (0.15 sec)

  1. samples/ambient-argo/istio/extras.yaml

    apiVersion: argoproj.io/v1alpha1
    kind: Application
    metadata:
      name: istio-addons
      namespace: argocd
      finalizers:
        - resources-finalizer.argocd.argoproj.io
    spec:
      project: default
      source:
        repoURL: 'https://github.com/istio/istio.git'
        targetRevision: HEAD
        path: samples/addons
        directory:
          exclude: loki.yaml
      destination:
        name: ambient-cluster
        namespace: istio-system
      syncPolicy:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 519 bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/init_test.go

    			cfg:  &kubeadmapi.ClusterConfiguration{},
    			expectedCfg: &kubeadmapi.ClusterConfiguration{
    				DNS: kubeadmapi.DNS{
    					Disabled: true,
    				},
    				Proxy: kubeadmapi.Proxy{
    					Disabled: true,
    				},
    			},
    			skipPhases:         []string{"addon/coredns", "addon/kube-proxy"},
    			expectedSkipPhases: []string{"addon/coredns", "addon/kube-proxy"},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/InetAddresses.java

                    analyzeNetworkInterface(interfaces.nextElement());
                }
            }
        }
    
        private void analyzeNetworkInterface(NetworkInterface networkInterface) {
            logger.debug("Adding IP addresses for network interface {}", networkInterface.getDisplayName());
            try {
                boolean isLoopbackInterface = networkInterface.isLoopback();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. src/debug/elf/file.go

    		// of the form S + A (symbol plus addend).
    
    		switch t {
    		case R_X86_64_64:
    			if rela.Off+8 >= uint64(len(dst)) || rela.Addend < 0 {
    				continue
    			}
    			val64 := sym.Value + uint64(rela.Addend)
    			f.ByteOrder.PutUint64(dst[rela.Off:rela.Off+8], val64)
    		case R_X86_64_32:
    			if rela.Off+4 >= uint64(len(dst)) || rela.Addend < 0 {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/README.md

    # Grafana Dashboards
    
    This folder contains Istio's official Grafana dashboards.
    These get publish to [Grafana](https://grafana.com/orgs/istio/dashboards) during release, and are bundled into our
    [Grafana sample](../../../samples/addons/grafana.yaml).
    
    ## Jsonnet
    
    Newer dashboards are generated with [Jsonnet](https://jsonnet.org/) with the [Grafonnet](https://grafana.github.io/grafonnet/index.html).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 815 bytes
    - Viewed (0)
  6. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenScopesTestIntegTest.groovy

                        }
                    }
                }
    
                dependencies {
                    custom 'log4j:log4j:1.2.17'
                }
            """
        }
    
        def "test adding custom variant with dependency mapped to Maven runtime scope"() {
            given:
            buildFile << """
                components.java.addVariantsFromConfiguration(configurations.custom) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/SubtypingTest.kt

        @get:Restricted
        abstract var superClassProp: SuperClass
    
        @get:Restricted
        abstract var superInterfaceProp: SuperInterface
    
        @Adding
        abstract fun addSuperClass(superclass: SuperClass)
    
        @Adding
        abstract fun addSuperInterface(superclass: SuperInterface)
    
        @Restricted
        abstract fun sub(): Subtype
    
        @Restricted
        abstract fun notASub(): NotASubtype
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:02 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/plugins/PluginsBlockSchema.kt

        val specs: List<MutablePluginDependencySpec>
            get() = _specs
    
        private
        val _specs = mutableListOf<MutablePluginDependencySpec>()
    
        @Adding
        override fun id(id: String): MutablePluginDependencySpec = MutablePluginDependencySpec(id).also(_specs::add)
    
        @Adding
        fun kotlin(id: String) = id("org.jetbrains.kotlin.$id")
    }
    
    
    class MutablePluginDependencySpec(
        val id: String
    ) : PluginDependencySpec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/composite_op_round_trip.mlir

        // CHECK-ROUNDTRIP:  %0 = stablehlo.composite "stablehlo.add_n" %arg0 {composite_attributes = {test_bool = false, test_int = 2 : i64, test_string = "test"}, decomposition = @add_n.impl} : (tensor<i64>) -> tensor<i64>
        %0 = stablehlo.composite "stablehlo.add_n" %arg0 { composite_attributes = { test_int = 2 : i64, test_bool = 0 : i1, test_string = "test"}, decomposition = @add_n.impl } : (tensor<i64>) -> tensor<i64>
        return %0 : tensor<i64>
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:40:50 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoPlugins/demoTypes.kt

    package org.gradle.internal.declarativedsl.demo.demoPlugins
    
    import org.gradle.declarative.dsl.model.annotations.Adding
    import org.gradle.declarative.dsl.model.annotations.Builder
    import org.gradle.declarative.dsl.model.annotations.Configuring
    import org.gradle.declarative.dsl.model.annotations.HasDefaultValue
    import org.gradle.declarative.dsl.model.annotations.Restricted
    
    
    class TopLevelScope {
        @get:Restricted
        val plugins = PluginsBlock()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top