Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,826 for yate (0.04 sec)

  1. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/TaskContainerDslIntegrationTest.kt

                    description += "C"
                    destinationDir = file("out")
                }
    
                val t18: TaskProvider<Task> = tasks.register("yate")
                val t19: TaskProvider<Copy> = tasks.register("quartern", Copy::class)
                val t20: TaskProvider<Copy> = tasks.register<Copy>("veduta")
    
                val t21: TaskProvider<Task> = tasks.register("vansire") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:27 UTC 2023
    - 15K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/upload/date.go

    import (
    	"fmt"
    	"os"
    	"sync"
    	"time"
    
    	"golang.org/x/telemetry/internal/counter"
    )
    
    // time and date handling
    
    var distantPast = 21 * 24 * time.Hour
    
    // reports that are too old (21 days) are not uploaded
    func (u *uploader) tooOld(date string, uploadStartTime time.Time) bool {
    	t, err := time.Parse("2006-01-02", date)
    	if err != nil {
    		u.logger.Printf("tooOld: %v", err)
    		return false
    	}
    	age := uploadStartTime.Sub(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. samples/ratelimit/local-rate-limit-service.yaml

    # This example shows how to use Istio local rate limiting with descriptors to limit by path. 
    # This uses the base book-info demo and adds rate limiting by path, specifically rate limiting the product page
    # to 10 requests per minute, and the overall fdqn will be able to accept 100 requests per minute. 
    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: filter-local-ratelimit-svc
      namespace: istio-system
    spec:
      workloadSelector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 31 08:22:09 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/build-cache/cache-admin-hit-rate.png

    cache-admin-hit-rate.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 98.6K bytes
    - Viewed (0)
  5. samples/ratelimit/rate-limit-service.yaml

    ##################################################################################################
    # Redis service and deployment
    # Ratelimit service and deployment
    
    # Note: a configmap is needed to make the rate limit deployment work properly, for example:
    #
    #  apiVersion: v1
    #  kind: ConfigMap
    #  metadata:
    #    name: ratelimit-config
    #  data:
    #    config.yaml: |
    #      domain: echo-ratelimit
    #      descriptors:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. pkg/controlplane/controller/legacytokentracking/controller_test.go

    			},
    		},
    	}
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			client := fake.NewSimpleClientset(test.clientObjects...)
    			limiter := rate.NewLimiter(rate.Every(throttlePeriod), 1)
    			controller := newController(client, testingclock.NewFakeClock(now), limiter)
    			if test.existingConfigMap != nil {
    				controller.configMapCache.Add(test.existingConfigMap)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 19 17:33:34 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    	return latest[:len(latest)-len(".json")]
    }
    
    // notNeeded returns true if the report for date has already been created
    func notNeeded(date string, todo work) bool {
    	if todo.uploaded != nil && todo.uploaded[date+".json"] {
    		return true
    	}
    	// maybe the report is already in todo.readyfiles
    	for _, f := range todo.readyfiles {
    		if strings.Contains(f, date) {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. pilot/pkg/features/tuning.go

    		"PILOT_STATUS_BURST",
    		500,
    		"If status is enabled, controls the Burst rate with which status will be updated.  "+
    			"See https://godoc.org/k8s.io/client-go/rest#Config Burst",
    	).Get()
    
    	StatusMaxWorkers = env.Register("PILOT_STATUS_MAX_WORKERS", 100, "The maximum number of workers"+
    		" Pilot will use to keep configuration status up to date.  Smaller numbers will result in higher status latency, "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 04:22:19 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

            this.testSourceDirs = testSourceDirs;
        }
    
        /**
         * The complete and up-to-date collection of test source directories
         *
         * This should be preferred to {@link #getTestSourceDirs()} as it will include late changes to default directories.
         *
         * @return lazily configurable collection of test source directories
         * @since 7.4
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  10. pkg/kubelet/apis/config/validation/validation_test.go

    	}, {
    		name: "enableSystemLogQuery is enabled without NodeLogQuery feature gate",
    		configure: func(conf *kubeletconfig.KubeletConfiguration) *kubeletconfig.KubeletConfiguration {
    			conf.EnableSystemLogQuery = true
    			return conf
    		},
    		errMsg: "invalid configuration: NodeLogQuery feature gate is required for enableSystemLogHandler",
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 28.7K bytes
    - Viewed (0)
Back to top