Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,175 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/main/webapp/js/admin/plugins/form-validator/date.js

    a.jQuery)}(this,function(a){!function(a){function b(a,b,d){var e=new Date(a,b,d),f=new Date,g=f.getFullYear()-e.getFullYear();e.setFullYear(e.getFullYear()+g),e>f&&(g--,e.setFullYear(e.getFullYear()-1));var h=Math.floor((f.getTime()-e.getTime())/864e5),i=g+h/(c(f.getFullYear())?366:365),j=((i+"").split(".")[1]||"").substr(0,3);return i>=0?Math.floor(i)+(j>=915?1:0):(j*=10,Math.floor(i)+(j<=840?1:0))}function c(a){var b=new Date(a,1,28);return b.setDate(b.getDate()+1),1===b.getMonth()}a.formUtils...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. tests/integration/telemetry/policy/testdata/rate-limit-configmap.yaml

    John Zheng <******@****.***> 1615837852 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 15 19:50:52 UTC 2021
    - 901 bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top