Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 572 for addLine (0.11 sec)

  1. pilot/pkg/security/model/authentication.go

    		CaCertificatePath: proxy.Metadata.TLSServerRootCert,
    	}
    
    	// TODO: if subjectAltName ends with *, create a prefix match as well.
    	// TODO: if user explicitly specifies SANs - should we alter his explicit config by adding all spifee aliases?
    	matchSAN := util.StringToExactMatch(subjectAltNames)
    	if len(trustDomainAliases) > 0 {
    		matchSAN = append(matchSAN, util.StringToPrefixMatch(AppendURIPrefixToTrustDomain(trustDomainAliases))...)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/pv_controller_base.go

    	if err != nil {
    		return false, err
    	}
    	if !found {
    		// This is a new object
    		logger.V(4).Info("storeObjectUpdate, adding obj", "storageClassName", className, "objName", objName, "resourceVersion", objAccessor.GetResourceVersion())
    		if err = store.Add(obj); err != nil {
    			return false, fmt.Errorf("error adding %s %q to controller cache: %w", className, objName, err)
    		}
    		return true, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_builder.go

    			if svc.Port.Port != port.Port {
    				// If the service port is different from the port of the cluster that is being built,
    				// skip adding telemetry metadata for the service to the cluster.
    				continue
    			}
    			if have.Contains(svc.Service.Hostname) {
    				// Skip adding metadata for instance with the same host name.
    				// This could happen when a service has multiple IPs.
    				continue
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  4. test/return.go

    func _() int {
    L:
    	{
    		print(1)
    		goto L
    	}
    }
    
    // block ending in terminating statement is okay
    func _() int {
    	print(1)
    	{
    		panic(2)
    	}
    }
    
    // adding more code - even though it is dead - now requires a return
    
    func _() int {
    	print(1)
    	return 2
    	print(3)
    } // ERROR "missing return"
    
    func _() int {
    L:
    	print(1)
    	goto L
    	print(3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 32.7K bytes
    - Viewed (0)
  5. okhttp-testing-support/src/main/kotlin/okhttp3/OkHttpClientTestRule.kt

            append(
              listOf(
                "Inaccessible trust store",
                "trustStore is",
                "Reload the trust store",
                "Reload trust certs",
                "Reloaded",
                "adding as trusted certificates",
                "Ignore disabled cipher suite",
                "Ignore unsupported cipher suite",
              ).joinToString(separator = "|"),
            )
            append(").*")
          },
        )
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.5K bytes
    - Viewed (1)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelElementNode.java

            if (target != null) {
                referenceNode.setTarget(target);
            }
            addNode(referenceNode, registration);
        }
    
        @Override
        public void addLink(ModelRegistration registration) {
            addNode(new ModelElementNode(modelRegistry, registration, this), registration);
        }
    
        private void addNode(ModelNodeInternal child, ModelRegistration registration) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    ====
    include::sample[dir="snippets/buildCache/normalization/kotlin",files="build.gradle.kts[tags=normalization]"]
    include::sample[dir="snippets/buildCache/normalization/groovy",files="build.gradle[tags=normalization]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  8. pkg/kubelet/stats/cadvisor_stats_provider.go

    		podStats, found := podToStats[ref]
    		if !found {
    			podStats = &statsapi.PodStats{PodRef: ref}
    			podToStats[ref] = podStats
    		}
    
    		// Update the PodStats entry with the stats from the container by
    		// adding it to podStats.Containers.
    		containerName := kubetypes.GetContainerName(cinfo.Spec.Labels)
    		if containerName == kubetypes.PodInfraContainerName {
    			// Special case for infrastructure container which is hidden from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 16 13:34:22 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/testing/AbstractTestFrameworkIntegrationTest.groovy

            succeeds "check"
    
            then:
            testResult.assertNoTestClassesExecuted()
        }
    
        @ToBeFixedForConfigurationCache(bottomSpecs = "XCTestTestFrameworkIntegrationTest")
        def "adding and removing tests remove old tests from reports"() {
            given:
            createPassingFailingTest()
            fails("check")
            when:
            renameTests()
            fails("check")
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  10. cni/pkg/iptables/iptables.go

    	if err := cfg.addLoopbackRoute(); err != nil {
    		return err
    	}
    
    	if err := cfg.addInpodMarkIPRule(); err != nil {
    		return err
    	}
    
    	log.Debug("Adding iptables rules")
    	if err := cfg.executeCommands(builder); err != nil {
    		log.Errorf("failed to restore iptables rules: %v", err)
    		return err
    	}
    
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top