Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 196 for resets (0.15 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/ConnectorServices.java

            return new DefaultCancellationTokenSource();
        }
    
        public static void close() {
            singletonRegistry.close();
        }
    
        /**
         * Resets the state of connector services. Meant to be used only for testing!
         */
        public static void reset() {
            singletonRegistry.close();
            singletonRegistry = new ConnectorServiceRegistry();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. 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)
  3. src/vendor/golang.org/x/crypto/sha3/shake.go

    	c.initBlock = append(c.initBlock, leftEncode(uint64(len(S)*8))...)
    	c.initBlock = append(c.initBlock, S...)
    	c.Write(bytepad(c.initBlock, c.rate))
    	return &c
    }
    
    // Reset resets the hash to initial state.
    func (c *cshakeState) Reset() {
    	c.state.Reset()
    	c.Write(bytepad(c.initBlock, c.rate))
    }
    
    // Clone returns copy of a cSHAKE context within its current state.
    func (c *cshakeState) Clone() ShakeHash {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/crypto/sha3/sha3_s390x.go

    		d := make([]byte, s.outputLen, 64)
    		klmd(s.function, &a, d, s.buf)
    		return append(b, d[:s.outputLen]...)
    	default:
    		panic("sha3: unknown function")
    	}
    }
    
    // Reset resets the Hash to its initial state.
    func (s *asmState) Reset() {
    	for i := range s.a {
    		s.a[i] = 0
    	}
    	s.resetBuf()
    	s.state = spongeAbsorbing
    }
    
    // Size returns the number of bytes Sum will return.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependency.java

         * resolution as if they were defined by the endorsing module itself.
         *
         * @since 6.0
         */
        void endorseStrictVersions();
    
        /**
         * Resets the {@link #isEndorsingStrictVersions()} state of this dependency.
         *
         * @since 6.0
         */
        void doNotEndorseStrictVersions();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. src/runtime/mgc.go

    		ready(sweep.g, 0, true)
    	}
    	unlock(&sweep.lock)
    	return false
    }
    
    // gcResetMarkState resets global state prior to marking (concurrent
    // or STW) and resets the stack scan state of all Gs.
    //
    // This is safe to do without the world stopped because any Gs created
    // during or after this will start out in the reset state.
    //
    // gcResetMarkState must be called on the system stack because it acquires
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/fetch.go

    type modSumStatus struct {
    	used, dirty bool
    }
    
    // Reset resets globals in the modfetch package, so previous loads don't affect
    // contents of go.sum files.
    func Reset() {
    	GoSumFile = ""
    	WorkspaceGoSumFiles = nil
    
    	// Uses of lookupCache and downloadCache both can call checkModSum,
    	// which in turn sets the used bit on goSum.status for modules.
    	// Reset them so used can be computed properly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. cmd/test-utils_test.go

    	resetGlobalConfig()
    	// Reset global endpoints.
    	resetGlobalEndpoints()
    	// Reset global isErasure flag.
    	resetGlobalIsErasure()
    	// Reset global heal state
    	resetGlobalHealState()
    	// Reset globalIAMSys to `nil`
    	resetGlobalIAMSys()
    }
    
    // Configure the server for the test run.
    func newTestConfig(bucketLocation string, obj ObjectLayer) (err error) {
    	// Initialize server config.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
Back to top