Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for Forbid (0.26 sec)

  1. staging/src/k8s.io/api/batch/v1/types.go

    	// Specifies how to treat concurrent executions of a Job.
    	// Valid values are:
    	//
    	// - "Allow" (default): allows CronJobs to run concurrently;
    	// - "Forbid": forbids concurrent runs, skipping next run if previous run hasn't finished yet;
    	// - "Replace": cancels currently running job and replaces it with a new one
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    		obj    interface{}
    		errors []string
    	}{
    		{
    			name: "forbid direct usage of optional integer",
    			schema: withRule(integerType, `
    				oldSelf + self > 5
    			`),
    			obj:    5,
    			errors: []string{"no matching overload for '_+_' applied to '(optional_type(int), int)"},
    		},
    		{
    			name: "forbid direct usage of optional string",
    			schema: withRule(stringType, `
    				oldSelf == "foo"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  3. pilot/pkg/model/sidecar.go

    				continue
    			}
    			// this is a non-zero port match
    			return e
    		}
    	}
    
    	// This should never be reached unless user explicitly set an empty array for egress
    	// listeners which we actually forbid
    	return nil
    }
    
    // HasIngressListener returns if the sidecar scope has ingress listener set
    func (sc *SidecarScope) HasIngressListener() bool {
    	if sc == nil {
    		return false
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    		// of a potentially large number of modules with no way to save version
    		// information. We can succeed slowly (but not reproducibly), but that's
    		// not usually a good experience.
    		//
    		// Instead, we forbid resolving import paths to modules other than std and
    		// cmd. Users may still build packages specified with .go files on the
    		// command line, but they'll see an error if those files import anything
    		// outside std.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		t.Errorf("expected admission error on create")
    	}
    
    	// createIfNotFound and verify
    	if !updateAndVerify(t, testContext, registry, podA) {
    		t.Errorf("Unexpected error updating podA")
    	}
    
    	// forbid creation again
    	registry.UpdateStrategy.(*testRESTStrategy).allowCreateOnUpdate = false
    
    	// outofDate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  6. CREDITS

    circumvention of technological measures to the extent such circumvention
    is effected by exercising rights under this License with respect to
    the covered work, and you disclaim any intention to limit operation or
    modification of the work as a means of enforcing, against the work's
    users, your or third parties' legal rights to forbid circumvention of
    technological measures.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  7. manifests/addons/values-grafana.yaml

    dashboardProviders:
      dashboardproviders.yaml:
        apiVersion: 1
        providers:
          - name: "istio"
            orgId: 1
            folder: "istio"
            type: file
            disableDeletion: false
            options:
              path: /var/lib/grafana/dashboards/istio
          - name: "istio-services"
            orgId: 1
            folder: "istio"
            type: file
            disableDeletion: false
            options:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. cmd/batch-handlers.go

    			}
    			m.RUnlock()
    			for _, jobID := range toDeleteJobMetrics {
    				m.delete(jobID)
    			}
    		}
    	}
    }
    
    func (m *batchJobMetrics) delete(jobID string) {
    	m.Lock()
    	defer m.Unlock()
    
    	delete(m.metrics, jobID)
    }
    
    func (m *batchJobMetrics) save(jobID string, ri *batchJobInfo) {
    	m.Lock()
    	defer m.Unlock()
    
    	m.metrics[jobID] = ri.clone()
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  9. pkg/controller/job/backoff_utils.go

    		backoffRecord.lastFailureTime = record.lastFailureTime
    	}
    
    	return nil
    }
    
    func (s *backoffStore) removeBackoffRecord(jobId string) error {
    	b, ok, err := s.store.GetByKey(jobId)
    	if err != nil {
    		return err
    	}
    
    	if ok {
    		err = s.store.Delete(b)
    		if err != nil {
    			return err
    		}
    	}
    
    	return nil
    
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 07:46:41 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. src/net/http/serve_test.go

    		// net stack), this can result in an infinite retry loop that doesn't
    		// propagate the error up far enough for us to adjust the WriteTimeout.
    		//
    		// To avoid that problem, we explicitly forbid internal retries by rejecting
    		// them in a Proxy hook in the transport.
    		var retries atomic.Int32
    		cst.c.Transport.(*Transport).Proxy = func(*Request) (*url.URL, error) {
    			if retries.Add(1) != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top