Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 236 for anyone (0.3 sec)

  1. docs/en/docs/async.md

    <img src="/img/async/parallel-burgers/parallel-burgers-03.png" class="illustration">
    
    As you and your crush are busy not letting anyone get in front of you and take your burgers whenever they arrive, you cannot pay attention to your crush. 😞
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller.go

    	}
    
    	// Otherwise, it's an orphan.
    	// Clean the finalizer.
    	if hasJobTrackingFinalizer(pod) {
    		jm.enqueueOrphanPod(pod)
    	}
    	// Get a list of all matching controllers and sync
    	// them to see if anyone wants to adopt it.
    	// DO NOT observe creation because no controller should be waiting for an
    	// orphan.
    	for _, job := range jm.getPodJobs(pod) {
    		jm.enqueueSyncJobBatched(logger, job)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  3. src/runtime/mstats.go

    	// these statistics at the point of the exchange by moving
    	// writers to the next set of deltas.
    	//
    	// This exchange is safe to do because we won't race
    	// with anyone else trying to update this value.
    	m.gen.Swap((currGen + 1) % 3)
    
    	// Allow P-less writers to continue. They'll be writing to the
    	// next generation now.
    	unlock(&m.noPLock)
    
    	for _, p := range allp {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/gateway.go

    			// along with filtering out plaintext destinations in EDS, ensures that our requests will
    			// always hit an Istio mTLS filter chain on the inbound side. As a result, it should not
    			// be possible for anyone to access a cluster without mTLS. Note that we cannot actually
    			// check for mTLS here, as we are doing passthrough TLS.
    			filterChains = append(filterChains, &filterChainOpts{
    				sniHosts:             []string{clusterName},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  5. src/runtime/symtab.go

    	fn := f.raw()
    	if fn.isInlined() { // inlined version
    		fi := (*funcinl)(unsafe.Pointer(fn))
    		return fi.file, int(fi.line)
    	}
    	// Pass strict=false here, because anyone can call this function,
    	// and they might just be wrong about targetpc belonging to f.
    	file, line32 := funcline1(f.funcInfo(), pc, false)
    	return file, int(line32)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context.go

    			// if service does not have exportTo *, but has exportTo ~ - i.e. not visible to anyone, ignore all exportTos.
    			// if service has exportTo ., replace with current namespace.
    			if s.Attributes.ExportTo.Contains(visibility.Public) {
    				ps.ServiceIndex.public = append(ps.ServiceIndex.public, s)
    				continue
    			} else if s.Attributes.ExportTo.Contains(visibility.None) {
    				continue
    			}
    			// . or other namespaces
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  7. CREDITS

      such Contributor itself or anyone acting on such Contributor's behalf.
      Contributions do not include changes or additions to the Program that
      are not Modified Works.
    
    "Contributor" means any person or entity that Distributes the Program.
    
    "Licensed Patents" mean patent claims licensable by a Contributor which
    are necessarily infringed by the use or sale of its Contribution alone
    or when combined with the Program.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  8. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    want it, that you can change the software or use pieces of it in new
    free programs; and that you know you can do these things.
    
    To protect your rights, we need to make restrictions that forbid anyone
    to deny you these rights or to ask you to surrender the rights. These
    restrictions translate to certain responsibilities for you if you
    distribute copies of the software, or if you modify it.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    }
    
    // AppendPack is like Pack but appends the full Message to b and returns the
    // extended buffer.
    func (m *Message) AppendPack(b []byte) ([]byte, error) {
    	// Validate the lengths. It is very unlikely that anyone will try to
    	// pack more than 65535 of any particular type, but it is possible and
    	// we should fail gracefully.
    	if len(m.Questions) > int(^uint16(0)) {
    		return nil, errTooManyQuestions
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  10. src/math/big/int.go

    	if x.neg == y.neg {
    		if x.neg {
    			// (-x) & (-y) == ^(x-1) & ^(y-1) == ^((x-1) | (y-1)) == -(((x-1) | (y-1)) + 1)
    			x1 := nat(nil).sub(x.abs, natOne)
    			y1 := nat(nil).sub(y.abs, natOne)
    			z.abs = z.abs.add(z.abs.or(x1, y1), natOne)
    			z.neg = true // z cannot be zero if x and y are negative
    			return z
    		}
    
    		// x & y == x & y
    		z.abs = z.abs.and(x.abs, y.abs)
    		z.neg = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
Back to top