Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 183 for Everything (0.21 sec)

  1. Makefile.core.mk

    # Create targets for TARGET_OUT_LINUX/binary
    # There are two use cases here:
    # * Building all docker images (generally in CI). In this case we want to build everything at once, so they share work
    # * Building a single docker image (generally during dev). In this case we just want to build the single binary alone
    BUILD_ALL ?= true
    define build-linux
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/io/Closer.java

              thrown.addSuppressed(suppressed);
            } catch (Throwable e) {
              /*
               * A Throwable is very unlikely, but we really don't want to throw from a Suppressor, so
               * we catch everything. (Any Exception is either a RuntimeException or
               * sneaky checked exception.) With no better options, we log anything to the same
               * place as Closeables logs.
               */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/policy/v1/types.go

    	// the deletion didn't occur and a pod is still there it will be removed from
    	// the list automatically by PodDisruptionBudget controller after some time.
    	// If everything goes smooth this map should be empty for the most of the time.
    	// Large number of entries in the map may indicate problems with pod deletions.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. pkg/webhooks/validation/controller/controller.go

    		if wh.FailurePolicy != nil && *wh.FailurePolicy != kubeApiAdmission.Fail {
    			return true
    		}
    	}
    	return false
    }
    
    func (c *Controller) syncAll() {
    	for _, whc := range c.webhooks.List("", klabels.Everything()) {
    		c.queue.AddObject(whc)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:19 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. pkg/registry/core/service/ipallocator/controller/repairip.go

    }
    
    // doRunOnce verifies the state of the ClusterIP allocations and returns an error if an unrecoverable problem occurs.
    func (r *RepairIPAddress) doRunOnce() error {
    	services, err := r.serviceLister.List(labels.Everything())
    	if err != nil {
    		return fmt.Errorf("unable to refresh the service IP block: %v", err)
    	}
    
    	// Check every Service's ClusterIP, and rebuild the state as we think it should be.
    	for _, svc := range services {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  6. internal/ioutil/ioutil.go

    		}
    
    		if totalSize > 0 && written == totalSize {
    			// we have written the entire stream, return right here.
    			return written, nil
    		}
    
    		if eof {
    			// We reached EOF prematurely but we did not write everything
    			// that we promised that we would write.
    			if totalSize > 0 && written != totalSize {
    				return written, io.ErrUnexpectedEOF
    			}
    			return written, nil
    		}
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/io/Closer.java

              thrown.addSuppressed(suppressed);
            } catch (Throwable e) {
              /*
               * A Throwable is very unlikely, but we really don't want to throw from a Suppressor, so
               * we catch everything. (Any Exception is either a RuntimeException or
               * sneaky checked exception.) With no better options, we log anything to the same
               * place as Closeables logs.
               */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. src/crypto/x509/name_constraints_test.go

    		intermediates: [][]constraintsSpec{
    			{
    				{},
    			},
    		},
    		leaf: leafSpec{
    			sans: []string{"dns:example.com"},
    		},
    	},
    
    	// #70: an empty DNS constraint should also reject everything.
    	{
    		roots: []constraintsSpec{
    			{
    				bad: []string{"dns:"},
    			},
    		},
    		intermediates: [][]constraintsSpec{
    			{
    				{},
    			},
    		},
    		leaf: leafSpec{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  9. src/net/url/url.go

    			// that too.
    			return c == '@' || c == '/' || c == '?' || c == ':'
    
    		case encodeQueryComponent: // §3.4
    			// The RFC reserves (so we must escape) everything.
    			return true
    
    		case encodeFragment: // §4.1
    			// The RFC text is silent but the grammar allows
    			// everything, so escape nothing.
    			return false
    		}
    	}
    
    	if mode == encodeFragment {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  10. src/crypto/rsa/rsa.go

    		if err != nil {
    			// Unset previous values, so we either have everything or nothing
    			priv.Precomputed.n = nil
    			return
    		}
    		priv.Precomputed.q, err = bigmod.NewModulusFromBig(priv.Primes[1])
    		if err != nil {
    			// Unset previous values, so we either have everything or nothing
    			priv.Precomputed.n, priv.Precomputed.p = nil, nil
    			return
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top