Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 385 for anyone (0.16 sec)

  1. src/go/types/methodset_test.go

    		// go.dev/issue/43621: We don't allow this anymore. Keep this code in case we
    		// decide to revisit this decision.
    		// "type C interface{ f() }; func g[T C]() { var a struct{T}; _ = a }": {{"f", []int{0, 0}, true}},
    
    		// go.dev/issue/45639: We also don't allow this anymore.
    		// "type C interface{ f() }; func g[T C]() { type Y T; var a Y; _ = a }": {},
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 08 15:27:57 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache-spi/src/main/java/org/gradle/caching/BuildCacheService.java

         */
        void store(BuildCacheKey key, BuildCacheEntryWriter writer) throws BuildCacheException;
    
        /**
         * Clean up any resources held by the cache once it's not used anymore.
         *
         * @throws IOException if the cache fails to close cleanly.
         */
        @Override
        void close() throws IOException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 12:59:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. cluster/addons/addon-manager/README.md

    Notes:
    - Label `kubernetes.io/cluster-service=true` is deprecated (only for Addon Manager).
    In future release (after one year), Addon Manager may not respect it anymore. Addons
    have this label but without `addonmanager.kubernetes.io/mode=EnsureExists` will be
    treated as "reconcile class addons" for now.
    - Resources under `$ADDON_PATH` need to have either one of these two labels.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  4. src/math/big/intconv.go

    // write count copies of text to s.
    func writeMultiple(s fmt.State, text string, count int) {
    	if len(text) > 0 {
    		b := []byte(text)
    		for ; count > 0; count-- {
    			s.Write(b)
    		}
    	}
    }
    
    var _ fmt.Formatter = intOne // *Int must implement fmt.Formatter
    
    // Format implements [fmt.Formatter]. It accepts the formats
    // 'b' (binary), 'o' (octal with 0 prefix), 'O' (octal with 0o prefix),
    // 'd' (decimal), 'x' (lowercase hexadecimal), and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/initializer/interfaces.go

    // WantsDrainedNotification defines a function which sets the notification of where the apiserver
    // has already been drained for admission plugins that need it.
    // After receiving that notification, Admit/Validate calls won't be called anymore.
    type WantsDrainedNotification interface {
    	SetDrainedNotification(<-chan struct{})
    	admission.InitializationValidator
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 19:11:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. src/regexp/syntax/compile.go

    }
    
    func (c *compiler) init() {
    	c.p = new(Prog)
    	c.p.NumCap = 2 // implicit ( and ) for whole match $0
    	c.inst(InstFail)
    }
    
    var anyRuneNotNL = []rune{0, '\n' - 1, '\n' + 1, unicode.MaxRune}
    var anyRune = []rune{0, unicode.MaxRune}
    
    func (c *compiler) compile(re *Regexp) frag {
    	switch re.Op {
    	case OpNoMatch:
    		return c.fail()
    	case OpEmptyMatch:
    		return c.nop()
    	case OpLiteral:
    		if len(re.Rune) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  7. src/runtime/debug_test.go

    	// caution to prevent #49370 from happening).
    	// TODO(mknyszek): This extra GC cycle is likely unnecessary
    	// because preemption (which may happen during the sweep phase)
    	// isn't much of an issue anymore thanks to asynchronous preemption.
    	// The biggest risk is having a write barrier in the debug call
    	// injection test code fire, because it runs in a signal handler
    	// and may not have a P.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 15:08:04 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. src/os/exec_plan9.go

    		status: &waitmsg,
    	}
    	return ps, nil
    }
    
    func (p *Process) release() error {
    	p.Pid = -1
    
    	// Just mark the PID unusable.
    	p.pidDeactivate(statusReleased)
    
    	// no need for a finalizer anymore
    	runtime.SetFinalizer(p, nil)
    	return nil
    }
    
    func findProcess(pid int) (p *Process, err error) {
    	// NOOP for Plan 9.
    	return newPIDProcess(pid), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/library/lists.go

    		next := it.Next()
    		nextCmp, ok := next.(traits.Comparer)
    		if !ok {
    			return types.MaybeNoSuchOverloadErr(next)
    		}
    		if prev != nil {
    			cmp := prev.Compare(next)
    			if cmp == types.IntOne {
    				return types.False
    			}
    		}
    		prev = nextCmp
    	}
    	return types.True
    }
    
    func sum(init func() ref.Val) functions.UnaryOp {
    	return func(val ref.Val) ref.Val {
    		i := init()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/plugins/DslObject.java

            }
            return dynamicObject;
        }
    
        @Override
        @Deprecated
        public org.gradle.api.plugins.Convention getConvention() {
    // TODO nag once KGP doesn't register conventions anymore
    //        DeprecationLogger.deprecateType(org.gradle.api.internal.HasConvention.class)
    //            .willBeRemovedInGradle9()
    //            .withUpgradeGuideSection(8, "deprecated_access_to_conventions")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top