Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,493 for addOne (0.11 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoSimple/demoTypes.kt

    package com.example
    
    import org.gradle.declarative.dsl.model.annotations.Adding
    import org.gradle.declarative.dsl.model.annotations.Builder
    import org.gradle.declarative.dsl.model.annotations.Restricted
    
    
    class Abc {
        @get:Restricted
        var a: Int = 0
    
        @Restricted
        fun b(): Int = 1
    
        @get:Restricted
        var str: String = ""
    
        @Adding
        fun c(x: Int, configure: C.() -> Unit = { }) =
            C().apply {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 949 bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

        else
          setup-addon-manifests "addons" "istio/noauth"
        fi
      fi
      if [[ -n "${EXTRA_ADDONS_URL:-}" ]]; then
        download-extra-addons
        setup-addon-manifests "addons" "gce-extras"
      fi
    
    
      # Place addon manager pod manifest.
      src_file="${src_dir}/kube-addon-manager.yaml"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. test/defer.go

    // license that can be found in the LICENSE file.
    
    // Test defer.
    
    package main
    
    import "fmt"
    
    var result string
    
    func addInt(i int) { result += fmt.Sprint(i) }
    
    func test1helper() {
    	for i := 0; i < 10; i++ {
    		defer addInt(i)
    	}
    }
    
    func test1() {
    	result = ""
    	test1helper()
    	if result != "9876543210" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 875 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/java/modules-multi-project/README.adoc

    In test execution, the modules are then treated as standard Java libraries with the encapsulation deactivated.
    
    Blackbox (e.g. integration) tests, which should also follow the encapsulation rules during test execution, can be written by turning the corresponding test sources set itself into a module by adding a `module-info.java`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top