Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 72 for deflate (0.14 sec)

  1. pkg/controller/job/job_controller.go

    	// Remove active pods if Job failed.
    	if jobCtx.finishedCondition != nil {
    		deleted, err := jm.deleteActivePods(ctx, &job, jobCtx.activePods)
    		if deleted != active || !satisfiedExpectations {
    			// Can't declare the Job as finished yet, as there might be remaining
    			// pod finalizers or pods that are not in the informer's cache yet.
    			jobCtx.finishedCondition = nil
    		}
    		active -= deleted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    }
    
    func WaitForMultipleObjects(handles []Handle, waitAll bool, waitMilliseconds uint32) (event uint32, err error) {
    	// Every other win32 array API takes arguments as "pointer, count", except for this function. So we
    	// can't declare it as a usual [] type, because mksyscall will use the opposite order. We therefore
    	// trivially stub this ourselves.
    
    	var handlePtr *Handle
    	if len(handles) > 0 {
    		handlePtr = &handles[0]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // the ownership of the listener (i.e. it will delete the listener when
      // the test program finishes).
      void Append(TestEventListener* listener);
    
      // Removes the given event listener from the list and returns it.  It then
      // becomes the caller's responsibility to delete the listener. Returns
      // NULL if the listener is not found in the list.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  4. src/go/parser/parser.go

    		if p.tok != token.SEMICOLON {
    			s2, _ = p.parseSimpleStmt(basic)
    		}
    		if p.tok == token.SEMICOLON {
    			p.next()
    			s1 = s2
    			s2 = nil
    			if p.tok != token.LBRACE {
    				// A TypeSwitchGuard may declare a variable in addition
    				// to the variable declared in the initial SimpleStmt.
    				// Introduce extra scope to avoid redeclaration errors:
    				//
    				//	switch t := 0; t := x.(T) { ... }
    				//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  5. src/testing/testing.go

    //	    // Unordered output: 4
    //	    // 2
    //	    // 1
    //	    // 3
    //	    // 0
    //	}
    //
    // Example functions without output comments are compiled but not executed.
    //
    // The naming convention to declare examples for the package, a function F, a type T and
    // method M on type T are:
    //
    //	func Example() { ... }
    //	func ExampleF() { ... }
    //	func ExampleT() { ... }
    //	func ExampleT_M() { ... }
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // the ownership of the listener (i.e. it will delete the listener when
      // the test program finishes).
      void Append(TestEventListener* listener);
    
      // Removes the given event listener from the list and returns it.  It then
      // becomes the caller's responsibility to delete the listener. Returns
      // NULL if the listener is not found in the list.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    tests and example functions. See 'go help testfunc' for more.
    Each listed package causes the execution of a separate test binary.
    Files whose names begin with "_" (including "_test.go") or "." are ignored.
    
    Test files that declare a package with the suffix "_test" will be compiled as a
    separate package, and then linked and run with the main test binary.
    
    The go tool will ignore a directory named "testdata", making it available
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. src/runtime/mheap.go

    // acquire the heap lock via allocSpan. See mheap for details.
    //
    // If new code is written to call allocManual, do NOT use an
    // existing spanAllocType value and instead declare a new one.
    //
    //go:systemstack
    func (h *mheap) allocManual(npages uintptr, typ spanAllocType) *mspan {
    	if !typ.manual() {
    		throw("manual span allocation called with non-manually-managed type")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/load.go

    	LoadTests bool
    
    	// UseVendorAll causes the "all" package pattern to be interpreted as if
    	// running "go mod vendor" (or building with "-mod=vendor").
    	//
    	// This is a no-op for modules that declare 'go 1.16' or higher, for which this
    	// is the default (and only) interpretation of the "all" pattern in module mode.
    	UseVendorAll bool
    
    	// AllowErrors indicates that LoadPackages should not terminate the process if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. src/go/types/api_test.go

    	}
    
    	for _, test := range tests {
    		pkg := mustTypecheck("package p;"+test.src, nil, nil)
    		X := pkg.Scope().Lookup("X")
    		Y := pkg.Scope().Lookup("Y")
    		if X == nil || Y == nil {
    			t.Fatal("test must declare both X and Y")
    		}
    		if got := Identical(X.Type(), Y.Type()); got != test.want {
    			t.Errorf("Identical(%s, %s) = %t, want %t", X.Type(), Y.Type(), got, test.want)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top