Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 292 for External (0.27 sec)

  1. pkg/apis/autoscaling/validation/validation_test.go

    				Kind: "ReplicationController",
    				Name: "myrc",
    			},
    			MinReplicas: utilpointer.Int32(1),
    			MaxReplicas: 5,
    			Metrics: []autoscaling.MetricSpec{{
    				Type: autoscaling.ExternalMetricSourceType,
    				External: &autoscaling.ExternalMetricSource{
    					Metric: autoscaling.MetricIdentifier{
    						Name:     "somemetric",
    						Selector: metricLabelSelector,
    					},
    					Target: autoscaling.MetricTarget{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                    implementation files('a.thing', additionalFile.output)
                }
            """
        }
    
        def "task input file collection can include project dependencies, external dependencies, prebuilt file dependencies and task output file dependencies"() {
            def configurationCache = newConfigurationCacheFixture()
    
            setupBuildWithEachDependencyType()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

    import org.gradle.api.internal.capabilities.ShadowedCapability;
    import org.gradle.internal.component.external.model.DefaultModuleComponentSelector;
    import org.gradle.internal.component.external.model.VirtualComponentIdentifier;
    import org.gradle.internal.component.local.model.LocalConfigurationGraphResolveMetadata;
    import org.gradle.internal.component.local.model.LocalFileDependencyMetadata;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/pv_controller.go

    	msg := fmt.Sprintf("Waiting for a volume to be created either by the external provisioner '%s' "+
    		"or manually by the system administrator. If volume creation is delayed, please verify that "+
    		"the provisioner is running and correctly registered.", provisionerName)
    	// External provisioner has been requested for provisioning the volume
    	// Report an event and wait for external provisioner to finish
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    	"encoding/base64"
    	"encoding/binary"
    	"fmt"
    	"internal/buildcfg"
    	"io"
    	"log"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"runtime"
    	"sort"
    	"strings"
    	"sync"
    	"time"
    
    	"cmd/internal/bio"
    	"cmd/internal/goobj"
    	"cmd/internal/notsha256"
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"cmd/link/internal/loadelf"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/loadmacho"
    	"cmd/link/internal/loadpe"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/xcoff.go

    	"encoding/binary"
    	"fmt"
    	"math/bits"
    	"os"
    	"path/filepath"
    	"sort"
    	"strings"
    	"sync"
    
    	"cmd/internal/objabi"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    )
    
    // This file handles all algorithms related to XCOFF files generation.
    // Most of them are adaptations of the ones in  cmd/link/internal/pe.go
    // as PE and XCOFF are based on COFF files.
    // XCOFF files generated are 64 bits.
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ppc64/asm.go

    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package ppc64
    
    import (
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"cmd/link/internal/ld"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    	"debug/elf"
    	"encoding/binary"
    	"fmt"
    	"internal/buildcfg"
    	"log"
    	"strconv"
    	"strings"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                }
            }
        }
    
        void "resolves dynamic dependency before resolving conflict"() {
            mavenRepo.module("org", "external", "1.2").publish()
            mavenRepo.module("org", "external", "1.4").publish()
            mavenRepo.module("org", "dep", "2.2").dependsOn("org", "external", "[1.3,)").publish()
    
            def buildFile = file("build.gradle")
            buildFile << """
    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceregistry_test.go

    	go kc.Run(stop)
    	go se.Run(stop)
    
    	return configController, client.Kube(), xdsUpdater
    }
    
    // TestWorkloadInstances is effectively an integration test of composing the Kubernetes service registry with the
    // external service registry, which have cross-references by workload instances.
    func TestWorkloadInstances(t *testing.T) {
    	istiotest.SetForTest(t, &features.WorkloadEntryHealthChecks, true)
    	port := &networking.ServicePort{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/proxier.go

    	// serviceNoLocalEndpointsExternal represents the set of services that couldn't be applied
    	// due to the absence of any endpoints when the external traffic policy is "Local".
    	// It is used to publish the sync_proxy_rules_no_endpoints_total
    	// metric with the traffic_policy label set to "external".
    	// A Set is used here since we end up calculating endpoint topology multiple times for the same Service
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
Back to top