Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 134 for enter_0 (0.19 sec)

  1. pkg/controller/deployment/deployment_controller.go

    		AddFunc: func(obj interface{}) {
    			dc.addDeployment(logger, obj)
    		},
    		UpdateFunc: func(oldObj, newObj interface{}) {
    			dc.updateDeployment(logger, oldObj, newObj)
    		},
    		// This will enter the sync loop and no-op, because the deployment has been deleted from the store.
    		DeleteFunc: func(obj interface{}) {
    			dc.deleteDeployment(logger, obj)
    		},
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. tests/integration/README.md

    ### Using Components
    
    The framework itself is just a platform for running tests and tracking resources. Without these `resources`, there
    isn't much added value. Enter: components.
    
    Components are utilities that provide abstractions for Istio resources. They are maintained in the
    [components package](https://github.com/istio/istio/tree/master/pkg/test/framework/components), which defines
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loadpe/ldpe.go

    				rType |= objabi.R_WEAK
    			}
    
    			rel, _ := sb.AddRel(rType)
    			rel.SetOff(rOff)
    			rel.SetSiz(rSize)
    			rel.SetSym(rSym)
    			rel.SetAdd(rAdd)
    
    		}
    
    		sb.SortRelocs()
    	}
    
    	// enter sub-symbols into symbol table.
    	for i, numaux := 0, 0; i < len(f.COFFSymbols); i += numaux + 1 {
    		pesym := &f.COFFSymbols[i]
    
    		numaux = int(pesym.NumberOfAuxSymbols)
    
    		name, err := pesym.FullName(f.StringTable)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  4. src/crypto/rsa/rsa_test.go

    			testKeyBasics(t, priv)
    		} else {
    			t.Errorf("failed to generate %d-prime key", n)
    		}
    	}
    }
    
    func TestImpossibleKeyGeneration(t *testing.T) {
    	// This test ensures that trying to generate toy RSA keys doesn't enter
    	// an infinite loop.
    	for i := 0; i < 32; i++ {
    		GenerateKey(rand.Reader, i)
    		GenerateMultiPrimeKey(rand.Reader, 3, i)
    		GenerateMultiPrimeKey(rand.Reader, 4, i)
    		GenerateMultiPrimeKey(rand.Reader, 5, i)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 12 00:55:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  5. src/runtime/pprof/proto.go

    		// consecutive to a next mapping, drop the /anon_hugepage.
    		// There's no indication why this is needed.
    		// Let's try not doing this and see what breaks.
    		// If we do need it, it would go here, before we
    		// enter the mappings into b.mem in the first place.
    
    		buildID, _ := elfBuildID(file)
    		addMapping(lo, hi, offset, file, buildID)
    	}
    }
    
    func (b *profileBuilder) addMapping(lo, hi, offset uint64, file, buildID string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/codehost/git.go

    		release()
    
    		if gitErr != nil {
    			if rerr, ok := gitErr.(*RunError); ok {
    				if bytes.Contains(rerr.Stderr, []byte("fatal: could not read Username")) {
    					rerr.HelpText = "Confirm the import path was entered correctly.\nIf this is a private repository, see https://golang.org/doc/faq#git_https for additional information."
    				}
    			}
    
    			// If the remote URL doesn't exist at all, ideally we should treat the whole
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  7. src/runtime/cgocall.go

    	// the $GOMAXPROCS accounting.
    	//
    	// fn may call back into Go code, in which case we'll exit the
    	// "system call", run the Go code (which may grow the stack),
    	// and then re-enter the "system call" reusing the PC and SP
    	// saved by entersyscall here.
    	entersyscall()
    
    	// Tell asynchronous preemption that we're entering external
    	// code. We do this after entersyscall because this may block
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. src/runtime/traceruntime.go

    // - The goroutine lost its P and acquired a different one, and is now running with that P.
    func (tl traceLocker) GoSysExit(lostP bool) {
    	ev := traceEvGoSyscallEnd
    	procStatus := traceProcSyscall // Procs implicitly enter traceProcSyscall on GoSyscallBegin.
    	if lostP {
    		ev = traceEvGoSyscallEndBlocked
    		procStatus = traceProcRunning // If a G has a P when emitting this event, it reacquired a P and is indeed running.
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/io/ByteStreams.java

       *       channel have their own file descriptors. Generally this only happens when both channels
       *       are files or sockets. This performs zero copies - the bytes never enter userspace.
       *   <li>Use mmap(2) or equivalent. Requires that either the input channel or the output channel
       *       have file descriptors. Bytes are copied from the file into a kernel buffer, then directly
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  10. hack/lib/util.sh

            git status -s
        else
            git diff -a # be more verbose in log files without tty
            exit 1
        fi | sed 's/^/  /'
        echo -e "\nCommit your changes in another terminal and then continue here by pressing enter."
        read -r
      done 1>&2
    }
    
    # Find the base commit using:
    # $PULL_BASE_SHA if set (from Prow)
    # current ref from the remote upstream branch
    kube::util::base_ref() {
      local -r git_branch=$1
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top