Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 314 for Empties (0.11 sec)

  1. guava-tests/test/com/google/common/base/FinalizableReferenceQueueClassLoaderUnloadingTest.java

          super(x, queue);
        }
    
        @Override
        public void finalizeReferent() {}
      }
    
      private static class PermissivePolicy extends Policy {
        @Override
        public boolean implies(ProtectionDomain pd, Permission perm) {
          return true;
        }
      }
    
      private WeakReference<ClassLoader> useFrqInSeparateLoader() throws Exception {
        final ClassLoader myLoader = getClass().getClassLoader();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/deadcode.go

    		// Proof: If we have a potential bad cycle, we have a
    		// situation like this:
    		//   x = (Phi z)
    		//   y = (op1 x ...)
    		//   z = (op2 y ...)
    		// Where opX are not Phi ops. But such a situation
    		// implies a cycle in the dominator graph. In the
    		// example, x.Block dominates y.Block, y.Block dominates
    		// z.Block, and z.Block dominates x.Block (treating
    		// "dominates" as reflexive).  Cycles in the dominator
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. src/testing/quick/quick.go

    	// MaxCount sets the maximum number of iterations.
    	// If zero, MaxCountScale is used.
    	MaxCount int
    	// MaxCountScale is a non-negative scale factor applied to the
    	// default maximum.
    	// A count of zero implies the default, which is usually 100
    	// but can be set by the -quickchecks flag.
    	MaxCountScale float64
    	// Rand specifies a source of random numbers.
    	// If nil, a default pseudo-random source will be used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/upgrade/apply.go

    	cmd.Flags().BoolVarP(&flags.force, "force", "f", flags.force, "Force upgrading although some requirements might not be met. This also implies non-interactive mode.")
    	cmd.Flags().BoolVar(&flags.dryRun, options.DryRun, flags.dryRun, "Do not change any state, just output what actions would be performed.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. src/syscall/exec_windows.go

    		return 0, 0, EWINDOWS
    	}
    	if len(attr.Files) < 3 {
    		return 0, 0, EINVAL
    	}
    
    	if len(attr.Dir) != 0 {
    		// StartProcess assumes that argv0 is relative to attr.Dir,
    		// because it implies Chdir(attr.Dir) before executing argv0.
    		// Windows CreateProcess assumes the opposite: it looks for
    		// argv0 relative to the current directory, and, only once the new
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 18:29:48 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/printer.go

    			p.pending[i].kind = k
    		case newline:
    			sawNewline = true
    		case blank, indent, outdent:
    			// nothing to do
    		// case comment:
    		// 	// A multi-line comment acts like a newline; and a ""
    		// 	// comment implies by definition at least one newline.
    		// 	if text := p.pending[i].text; strings.HasPrefix(text, "/*") && strings.ContainsRune(text, '\n') {
    		// 		sawNewline = true
    		// 	}
    		// case eolComment:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    	}
    	return nil
    }
    
    // applyPatch is called every time GuaranteedUpdate asks for the updated object,
    // and is given the currently persisted object as input.
    // TODO: rename this function because the name implies it is related to applyPatcher
    func (p *patcher) applyPatch(ctx context.Context, _, currentObject runtime.Object) (objToUpdate runtime.Object, patchErr error) {
    	// Make sure we actually have a persisted currentObject
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__authentication.k8s.io__v1alpha1_openapi.json

                },
                "type": "array",
                "x-kubernetes-list-type": "atomic"
              },
              "group": {
                "description": "group is the preferred group of the resource.  Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale\".",
                "type": "string"
              },
              "kind": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  9. src/crypto/rsa/rsa.go

    		return errors.New("crypto/rsa: invalid modulus")
    	}
    
    	// Check that de ≡ 1 mod p-1, for each prime.
    	// This implies that e is coprime to each p-1 as e has a multiplicative
    	// inverse. Therefore e is coprime to lcm(p-1,q-1,r-1,...) =
    	// exponent(ℤ/nℤ). It also implies that a^de ≡ a mod p as a^(p-1) ≡ 1
    	// mod p. Thus a^de ≡ a mod n for all a coprime to n, as required.
    	congruence := new(big.Int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/nilcheck.go

    	for _, b := range f.Blocks {
    		for _, v := range b.Values {
    			// a value resulting from taking the address of a
    			// value, or a value constructed from an offset of a
    			// non-nil ptr (OpAddPtr) implies it is non-nil
    			// We also assume unsafe pointer arithmetic generates non-nil pointers. See #27180.
    			// We assume that SlicePtr is non-nil because we do a bounds check
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top