Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,021 for squash (0.24 sec)

  1. CONTRIBUTING.md

         copy of the boilerplate license comment (can be copied from an existing
         file).
      3. Files should be formatted according to Google's [Java style guide][].
      4. Please squash all commits for a change into a single commit (this can be
         done using `git rebase -i`). Do your best to have a
         [well-formed commit message][] for the change.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. CONTRIBUTING.md

    After your code changes, make sure
    
    - To add test cases for the new code. If you have questions about how to do it, please ask on our [Slack](https://slack.min.io) channel.
    - To run `make verifiers`
    - To squash your commits into a single commit. `git rebase -i`. It's okay to force update your pull request.
    - To run `make test` and `make build` completes.
    
    ### Commit changes
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/scope.go

    	}
    	s.elems[name] = obj
    }
    
    // Squash merges s with its parent scope p by adding all
    // objects of s to p, adding all children of s to the
    // children of p, and removing s from p's children.
    // The function f is called for each object obj in s which
    // has an object alt in p. s should be discarded after
    // having been squashed.
    func (s *Scope) Squash(err func(obj, alt Object)) {
    	p := s.parent
    	assert(p != nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. src/go/types/scope.go

    	}
    	s.elems[name] = obj
    }
    
    // Squash merges s with its parent scope p by adding all
    // objects of s to p, adding all children of s to the
    // children of p, and removing s from p's children.
    // The function f is called for each object obj in s which
    // has an object alt in p. s should be discarded after
    // having been squashed.
    func (s *Scope) squash(err func(obj, alt Object)) {
    	p := s.parent
    	assert(p != nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. src/go/types/signature.go

    		if recvPar != nil {
    			check.error(ftyp.TypeParams, InvalidMethodTypeParams, "methods cannot have type parameters")
    		}
    	}
    
    	// Use a temporary scope for all parameter declarations and then
    	// squash that scope into the parent scope (and report any
    	// redeclarations at that time).
    	//
    	// TODO(adonovan): now that each declaration has the correct
    	// scopePos, there should be no need for scope squashing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/signature.go

    	if tparams != nil {
    		// The parser will complain about invalid type parameters for methods.
    		check.collectTypeParams(&sig.tparams, tparams)
    	}
    
    	// Use a temporary scope for all parameter declarations and then
    	// squash that scope into the parent scope (and report any
    	// redeclarations at that time).
    	//
    	// TODO(adonovan): now that each declaration has the correct
    	// scopePos, there should be no need for scope squashing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. src/go/types/generate_test.go

    		renameIdents(f, "syntax->ast")
    	},
    	"package.go":       nil,
    	"pointer.go":       nil,
    	"predicates.go":    nil,
    	"scope.go":         func(f *ast.File) { fixTokenPos(f); renameIdents(f, "Squash->squash", "InsertLazy->_InsertLazy") },
    	"selection.go":     nil,
    	"sizes.go":         func(f *ast.File) { renameIdents(f, "IsSyncAtomicAlign64->_IsSyncAtomicAlign64") },
    	"slice.go":         nil,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  8. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

    performanceTest.registerTestProject("gradleBuildBaseline", RemoteProject) {
        remoteUri = repoRoot(project).asFile.absolutePath
        // Remember to update accordingly when rebasing/squashing
        // Do not use the "Rebase and merge" nor "Squash and merge" Github buttons when merging a PR that change the baseline
        ref = '264bd7744d2e89b2708303cd56bb11bc5003fa7e'
    }
    
    // === Declarative DSL ===
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  9. pkg/proxy/endpointschangetracker.go

    	// TODO: If this will appear to be computationally expensive, consider
    	// computing this incrementally similarly to endpointsMap.
    
    	// (Note that we need to call getLocalEndpointIPs first to squash the data by IP,
    	// because the EndpointsMap is sorted by IP+port, not just IP, and we want to
    	// consider a Service pointing to 10.0.0.1:80 and 10.0.0.1:443 to have 1 endpoint,
    	// not 2.)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  10. pkg/credentialprovider/keyring_test.go

    	}
    }
    
    func TestDockerKeyringLookup(t *testing.T) {
    	ada := AuthConfig{
    		Username: "ada",
    		Password: "smash", // Fake value for testing.
    		Email:    "******@****.***",
    	}
    
    	grace := AuthConfig{
    		Username: "grace",
    		Password: "squash", // Fake value for testing.
    		Email:    "******@****.***",
    	}
    
    	dk := &BasicDockerKeyring{}
    	dk.Add(DockerConfig{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 15 10:47:22 UTC 2023
    - 15.1K bytes
    - Viewed (0)
Back to top