Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for applicationId (0.3 sec)

  1. .teamcity/test-buckets.json

    				"subprojects":[
    					"language-native",
    					"tooling-native",
    					"core-api",
    					"wrapper-main",
    					"build-events",
    					"reporting",
    					"resources-s3",
    					"diagnostics",
    					"plugins-application",
    					"language-jvm"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"code-quality",
    					"signing",
    					"ide-native",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  2. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.jvm.application.tasks.CreateStartScripts.getApplicationName()> does not have raw return type assignable to org.gradle.api.provider.Property in (CreateStartScripts.java:0)
    Method <org.gradle.jvm.application.tasks.CreateStartScripts.getDefaultJvmOpts()> does not have raw return type assignable to org.gradle.api.provider.Property in (CreateStartScripts.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ----
    =====
    ====
    
    This should be changed to use the `application { }` configuration block, backed by link:{groovyDslPath}/org.gradle.api.plugins.JavaApplication.html[JavaApplication], instead:
    
    ====
    [.multi-language-sample]
    =====
    .build.gradle.kts
    [source,kotlin]
    ----
    plugins {
        application
    }
    
    application {
        applicationDefaultJvmArgs = listOf("-Dgreeting.language=en")
    }
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  4. cmd/iam.go

    		loadUserCalled = true
    
    		u, ok = sys.store.GetUser(accessKey)
    	}
    
    	if !ok && loadUserCalled && err != nil {
    		iamLogOnceIf(ctx, err, accessKey)
    
    		// return 503 to application
    		return u, false, errIAMNotInitialized
    	}
    
    	return u, ok && u.Credentials.IsValid(), nil
    }
    
    // GetUser - get user credentials
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.31.md

    volume plugin ( `kubernetes.io/cephfs`) was removed in this release and the `cephfs` volume type became non-functional. Alternative is to use CephFS CSI driver (https://github.com/ceph/ceph-csi/) in your Kubernetes Cluster. A re-deployment of your application is required to use the new driver if you were using `kubernetes.io/cephfs` volume plugin before upgrading cluster version to 1.31+. ([#124544](https://github.com/kubernetes/kubernetes/pull/124544), [@carlory](https://github.com/carlory)) [SIG Node,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  6. pkg/workloadapi/workload.pb.go

    	// * Requests *to* this workload, via the tunnel_protocol, do not need to be de-tunneled.
    	NativeTunnel bool `protobuf:"varint,14,opt,name=native_tunnel,json=nativeTunnel,proto3" json:"native_tunnel,omitempty"`
    	// If an application, such as a sandwiched waypoint proxy, supports directly
    	// receiving information from zTunnel they can set application_protocol.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  7. cluster/gce/windows/k8s-node-setup.psm1

    #
    # Required ${kube_env} keys:
    #   KUBERNETES_MASTER_NAME: the apiserver IP address.
    function Create-KubeletKubeconfig {
      Write_BootstrapKubeconfig
    }
    
    # Creates the kubeconfig user file for applications that communicate with Kubernetes.
    #
    # Create-NodePki() must be called first.
    #
    # Required ${kube_env} keys:
    #   CA_CERT
    #   KUBERNETES_MASTER_NAME
    function Create-Kubeconfig {
      param (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  8. .bazelrc

    build:release_cpu_macos --config=avx_linux
    
    # Base build configs for macOS
    build:release_macos_base --action_env  DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
    build:release_macos_base --define=no_nccl_support=true --output_filter=^$
    
    # Ensure release_base is set on mac
    build:release_macos_base --config=release_base
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. cmd/kubelet/app/server.go

    	default:
    		// otherwise let the rest client perform defaulting
    	}
    }
    
    // RunKubelet is responsible for setting up and running a kubelet.  It is used in three different applications:
    //
    //	1 Integration tests
    //	2 Kubelet binary
    //	3 Standalone 'kubernetes' binary
    //
    // Eventually, #2 will be replaced with instances of #3
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  10. cmd/batch-handlers.go

    	if err != nil {
    		return err
    	}
    
    	if token != "" {
    		req.Header.Set("Authorization", token)
    	}
    	req.Header.Set("Content-Type", "application/json")
    
    	clnt := http.Client{Transport: getRemoteInstanceTransport()}
    	resp, err := clnt.Do(req)
    	if err != nil {
    		return err
    	}
    
    	xhttp.DrainBody(resp.Body)
    	if resp.StatusCode != http.StatusOK {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
Back to top