Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 501 for cleaners (0.22 sec)

  1. src/cmd/compile/internal/types2/check.go

    	check.delayed = check.delayed[:top]
    }
    
    // cleanup runs cleanup for all collected cleaners.
    func (check *Checker) cleanup() {
    	// Don't use a range clause since Named.cleanup may add more cleaners.
    	for i := 0; i < len(check.cleaners); i++ {
    		check.cleaners[i].cleanup()
    	}
    	check.cleaners = nil
    }
    
    func (check *Checker) record(x *operand) {
    	// convert x into a user-friendly set of values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  2. src/go/types/check.go

    	check.delayed = check.delayed[:top]
    }
    
    // cleanup runs cleanup for all collected cleaners.
    func (check *Checker) cleanup() {
    	// Don't use a range clause since Named.cleanup may add more cleaners.
    	for i := 0; i < len(check.cleaners); i++ {
    		check.cleaners[i].cleanup()
    	}
    	check.cleaners = nil
    }
    
    func (check *Checker) record(x *operand) {
    	// convert x into a user-friendly set of values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. docs/en/docs/async.md

    But in this case, if you could bring the 8 ex-cashier/cooks/now-cleaners, and each one of them (plus you) could take a zone of the house to clean it, you could do all the work in **parallel**, with the extra help, and finish much sooner.
    
    In this scenario, each one of the cleaners (including you) would be a processor, doing their part of the job.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/named.go

    	switch t.underlying.(type) {
    	case nil:
    		if t.TypeArgs().Len() == 0 {
    			panic("nil underlying")
    		}
    	case *Named:
    		t.under() // t.under may add entries to check.cleaners
    	}
    	t.check = nil
    }
    
    // Obj returns the type name for the declaration defining the named type t. For
    // instantiated types, this is same as the type name of the origin type.
    func (t *Named) Obj() *TypeName {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. src/go/types/named.go

    	switch t.underlying.(type) {
    	case nil:
    		if t.TypeArgs().Len() == 0 {
    			panic("nil underlying")
    		}
    	case *Named:
    		t.under() // t.under may add entries to check.cleaners
    	}
    	t.check = nil
    }
    
    // Obj returns the type name for the declaration defining the named type t. For
    // instantiated types, this is same as the type name of the origin type.
    func (t *Named) Obj() *TypeName {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. pkg/controller/certificates/cleaner/cleaner.go

    limitations under the License.
    */
    
    // Package cleaner implements an automated cleaner that does garbage collection
    // on CSRs that meet specific criteria. With automated CSR requests and
    // automated approvals, the volume of CSRs only increases over time, at a rapid
    // rate if the certificate duration is short.
    package cleaner
    
    import (
    	"context"
    	"crypto/x509"
    	"encoding/pem"
    	"fmt"
    	"time"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/apache/maven/cli/CleanArgument.java

                    } else {
                        cleaned.add(arg);
                    }
                }
            }
    
            if (currentArg != null) {
                cleaned.add(currentArg.toString());
            }
    
            int cleanedSz = cleaned.size();
    
            String[] cleanArgs;
    
            if (cleanedSz == 0) {
                cleanArgs = args;
            } else {
                cleanArgs = cleaned.toArray(new String[0]);
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 12:51:05 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. cmd/kubelet/app/server.go

    		}
    	}
    	return &kubelet.Dependencies{
    		Auth:                nil, // default does not enforce auth[nz]
    		CAdvisorInterface:   nil, // cadvisor.New launches background processes (bg http.ListenAndServe, and some bg cleaners), not set here
    		Cloud:               nil, // cloud provider might start background processes
    		ContainerManager:    nil,
    		KubeClient:          nil,
    		HeartbeatClient:     nil,
    		EventClient:         nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/list_replace_absolute_windows.txt

    # Test a replacement with an absolute path (so the path isn't
    # cleaned by having filepath.Abs called on it). This checks
    # whether the modindex logic cleans the modroot path before using
    # it.
    
    [!GOOS:windows] skip
    [short] skip
    
    go run print_go_mod.go # use this program to write a go.mod with an absolute path
    cp stdout go.mod
    
    go list -modfile=go.mod all
    -- print_go_mod.go --
    //go:build ignore
    package main
    
    import (
        "fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 693 bytes
    - Viewed (0)
  10. cni/test/install_cni.go

    			t.Logf("installer complete: %v", err)
    		} else {
    			t.Errorf("installer failed: %v", err)
    		}
    	}
    
    	if cleanErr := installer.Cleanup(); cleanErr != nil {
    		t.Errorf("Error during test CNI installer cleanup, error was: %s", cleanErr)
    	}
    }
    
    // checkResult checks if resultFile is equal to expectedFile at each tick until timeout
    func checkResult(result, expected string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top