Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 269 for shortly (0.12 sec)

  1. pilot/pkg/model/endpointshards.go

    	// moving forward in version. In practice, this is pretty rare and self corrects nearly
    	// immediately. However, clearing the cache here has almost no impact on cache performance as we
    	// would clear it shortly after anyways.
    	e.clearCacheForService(hostname, namespace)
    
    	return pushType
    }
    
    // updateShardServiceAccount updates the service endpoints' sa when service/endpoint event happens.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. pkg/volume/util/operationexecutor/operation_generator.go

    			}
    			markMountUncertainErr := actualStateOfWorld.MarkVolumeMountAsUncertain(opts)
    			if markMountUncertainErr != nil {
    				// There is nothing else we can do. Hope that UnmountVolume will be re-tried shortly.
    				klog.Errorf(volumeToUnmount.GenerateErrorDetailed("UnmountVolume.MarkVolumeMountAsUncertain failed", markMountUncertainErr).Error())
    			}
    
    			// On failure, return error. Caller will log and retry.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  3. cluster/log-dump/log-dump.sh

              log-dump-ssh "${node_name}" "sudo journalctl --output=short-precise -u kube-master-installation.service" > "${dir}/kube-master-installation.log" || true
              log-dump-ssh "${node_name}" "sudo journalctl --output=short-precise -u kube-master-configuration.service" > "${dir}/kube-master-configuration.log" || true
            else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/pv_controller_test.go

    			// pre-existing finalizer, for example the pv-protection finalizer. When csi-migration is disabled,
    			// the migrated-to annotation will be removed shortly when updateVolumeMigrationAnnotationsAndFinalizers
    			// is called followed by adding back the in-tree pv protection finalizer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  5. src/runtime/os_windows.go

    		// can't since there may be untyped syscall arguments
    		// on the stack. Instead, just wait and encourage the
    		// SuspendThread APC to run. The preemption should be
    		// done shortly.
    		osyield()
    	}
    	// Asynchronous preemption is now blocked.
    }
    
    // osPreemptExtExit is called after returning from external code that
    // may call ExitProcess.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  6. src/go/build/build.go

    		return errors.New(errStr)
    	}
    
    	// If 'go list' did locate the package, ignore the error.
    	// It was probably related to loading source files, and we'll
    	// encounter it ourselves shortly if the FindOnly flag isn't set.
    	p.Dir = dir
    	p.ImportPath = f[1]
    	p.Root = f[2]
    	p.Goroot = f[3] == "true"
    	return nil
    }
    
    func equal(x, y []string) bool {
    	if len(x) != len(y) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/IsolatableSerializerRegistryTest.groovy

        def "can serialize/deserialize isolated Short values"() {
            short short1 = 1
            short short2 = 2
            Isolatable<?>[] isolatables = [isolatableFactory.isolate(short1), isolatableFactory.isolate(short2)]
    
            when:
            serialize(isolatables)
    
            and:
            Isolatable<?>[] newIsolatables = deserialize()
    
            then:
            newIsolatables[0].isolate() == short1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/pv_controller.go

    			}
    			// In both cases, the volume is Bound and the claim is Pending.
    			// Next syncClaim will fix it. To speed it up, we enqueue the claim
    			// into the controller, which results in syncClaim to be called
    			// shortly (and in the right worker goroutine).
    			// This speeds up binding of provisioned volumes - provisioner saves
    			// only the new PV and it expects that next syncClaim will bind the
    			// claim to it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtReferenceShortener.kt

    public typealias KtReferenceShortener = KaReferenceShortener
    
    public interface KaReferenceShortenerMixIn : KaSessionMixIn {
    
        /**
         * Collects possible references to shorten. By default, it shortens a fully-qualified members to the outermost class and does not
         * shorten enum entries.  In case of KDoc shortens reference only if it is already imported.
         *
         * N.B. This API is not implemented for the FE10 implementation!
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. src/math/big/floatmarsh.go

    	if x.form == finite {
    		// add space for mantissa and exponent
    		n = int((x.prec + (_W - 1)) / _W) // required mantissa length in words for given precision
    		// actual mantissa slice could be shorter (trailing 0's) or longer (unused bits):
    		// - if shorter, only encode the words present
    		// - if longer, cut off unused words when encoding in bytes
    		//   (in practice, this should never happen since rounding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top