Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Resets (0.15 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/SystemPropertyPropagationCrossVersionTest.groovy

            when:
            runTask { withSystemProperties('unrelated' : 'value') }
    
            then:
            hasNoSystemProperty('mySystemProperty')
        }
    
        def "Calling withSystemProperties(null) resets to default behavior"() {
            when:
            runTask {
                withSystemProperties('unrelated' : 'value')
                withSystemProperties(null)
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/types.go

    			continue
    		}
    		if k == tmpKey {
    			// delete the element
    			s[i] = s[len(s)-1]
    			s = s[:len(s)-1]
    			removed = true
    			break
    		}
    	}
    	// resets the slices to nil so that we can do DeepEqual in unit tests.
    	if len(s) == 0 {
    		return nil, removed
    	}
    	return s, removed
    }
    
    // RemovePod subtracts pod information from this NodeInfo.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/func.go

    	if f.pass != nil {
    		n = strings.Replace(f.pass.name, " ", "_", -1)
    	}
    	f.Warnl(f.Entry.Pos, "\t%s\t%s%s\t%s", n, key, value, f.Name)
    }
    
    // unCacheLine removes v from f's constant cache "line" for aux,
    // resets v.InCache when it is found (and removed),
    // and returns whether v was found in that line.
    func (f *Func) unCacheLine(v *Value, aux int64) bool {
    	vv := f.constants[aux]
    	for i, cv := range vv {
    		if v == cv {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. cmd/test-utils_test.go

    // This makes it easy to run the TestServer from any of the tests.
    // Using this interface, functionalities to be used in tests can be
    // made generalized, and can be integrated in benchmarks/unit tests/go check suite tests.
    type TestErrHandler interface {
    	testing.TB
    }
    
    const (
    	// ErasureSDStr is the string which is used as notation for Single node ObjectLayer in the unit tests.
    	ErasureSDStr string = "ErasureSD"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    //	    same information as the -v flag in a machine-readable format.
    //
    //	-list regexp
    //	    List tests, benchmarks, fuzz tests, or examples matching the regular
    //	    expression. No tests, benchmarks, fuzz tests, or examples will be run.
    //	    This will only list top-level tests. No subtest or subbenchmarks will be
    //	    shown.
    //
    //	-parallel n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. .github/workflows/tests.yml

        - name: go mod package cache
          uses: actions/cache@v4
          with:
            path: ~/go/pkg/mod
            key: ${{ runner.os }}-go-${{ matrix.go }}-${{ hashFiles('tests/go.mod') }}
    
        - name: Tests
          run: GITHUB_ACTION=true GORM_DIALECT=sqlite ./tests/tests_all.sh
    
      mysql:
        strategy:
          matrix:
            dbversion: ['mysql/mysql-server:latest', 'mysql:5.7']
            go: ['1.22', '1.21', '1.20']
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:24:34 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. pkg/ctrlz/ctrlz.go

    package ctrlz
    
    import (
    	"fmt"
    	"html/template"
    	"net"
    	"net/http"
    	"net/http/pprof"
    	"os"
    	"strings"
    	"sync"
    	"time"
    
    	"github.com/gorilla/mux"
    
    	"istio.io/istio/pkg/ctrlz/assets"
    	"istio.io/istio/pkg/ctrlz/fw"
    	"istio.io/istio/pkg/ctrlz/topics"
    	"istio.io/istio/pkg/log"
    )
    
    var coreTopics = []fw.Topic{
    	topics.ScopeTopic(),
    	topics.MemTopic(),
    	topics.EnvTopic(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 21:22:53 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. build-logic/integration-testing/src/main/kotlin/gradlebuild.cross-version-tests.gradle.kts

            group = "verification"
            description = "Runs the cross-version tests against all Gradle versions with 'forking' executer"
        }
    
        val quickFeedbackCrossVersionTests = tasks.register("quickFeedbackCrossVersionTests") {
            group = "verification"
            description = "Runs the cross-version tests against a subset of selected Gradle versions with 'forking' executer for quick feedback"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/server_test.go

    		},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			args := &PilotArgs{JwtRule: tt.jwtRule}
    
    			_, err := initOIDC(args, nil)
    			gotErr := err != nil
    			if gotErr != tt.expectErr {
    				t.Errorf("expect error is %v while actual error is %v", tt.expectErr, gotErr)
    			}
    		})
    	}
    }
    
    func TestWatchDNSCertForK8sCA(t *testing.T) {
    	tests := []struct {
    		name        string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    	abiSelf := abiForFunc(fn, ssaConfig.ABI0, ssaConfig.ABI1)
    
    	printssa := false
    	// match either a simple name e.g. "(*Reader).Reset", package.name e.g. "compress/gzip.(*Reader).Reset", or subpackage name "gzip.(*Reader).Reset"
    	// optionally allows an ABI suffix specification in the GOSSAHASH, e.g. "(*Reader).Reset<0>" etc
    	if strings.Contains(ssaDump, name) { // in all the cases the function name is entirely contained within the GOSSAFUNC string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top