Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 5,909 for became (0.13 sec)

  1. internal/bucket/lifecycle/noncurrentversion.go

    	if obj.IsLatest || n.StorageClass == "" {
    		return time.Time{}, false
    	}
    	// Days == 0 indicates immediate tiering, i.e object is eligible for tiering since it became noncurrent.
    	if n.NoncurrentDays == 0 {
    		return obj.SuccessorModTime, true
    	}
    	return ExpectedExpiryTime(obj.SuccessorModTime, int(n.NoncurrentDays)), true
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Dec 14 17:41:44 UTC 2021
    - 5.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sync/semaphore/semaphore.go

    		// whether it became done before the call began or while we were
    		// waiting for the mutex. We prefer to fail even if we could acquire
    		// the mutex without blocking.
    		s.mu.Unlock()
    		return ctx.Err()
    	default:
    	}
    	if s.size-s.cur >= n && s.waiters.Len() == 0 {
    		// Since we hold s.mu and haven't synchronized since checking done, if
    		// ctx becomes done before we return here, it becoming done must have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/gover/version.go

    	// of packages in "all", so that 'go test all' can be run without checksum
    	// errors.
    	// See https://go.dev/issue/56222.
    	TidyGoModSumVersion = "1.21"
    
    	// goStrictVersion is the Go version at which the Go versions
    	// became "strict" in the sense that, restricted to modules at this version
    	// or later, every module must have a go version line ≥ all its dependencies.
    	// It is also the version after which "too new" a version is considered a fatal error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/OutputsCleaner.java

     *
     * This class should be used when cleaning output directories when only a subset of the files can be deleted.
     * After cleaning up a few output directories, the method {@link #cleanupDirectories()} cleans the directories which became empty.
     *
     * IMPORTANT: This class is stateful, so it can't be used as a service.
     */
    public class OutputsCleaner {
        private static final Logger LOGGER = LoggerFactory.getLogger(OutputsCleaner.class);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/DefaultJavaPluginConvention.java

        }
    
        @Override
        public boolean getAutoTargetJvmDisabled() {
            return extension.getAutoTargetJvmDisabled();
        }
    
        File getReportsDir() {
            // This became public API by accident as Groovy has access to private methods and we show an example in our docs
            // see platforms/documentation/docs/src/snippets/java/customDirs/groovy/build.gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 22:10:58 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/eventbus/Subscriber.java

        } catch (IllegalArgumentException e) {
          throw new Error("Method rejected target/argument: " + event, e);
        } catch (IllegalAccessException e) {
          throw new Error("Method became inaccessible: " + event, e);
        } catch (InvocationTargetException e) {
          if (e.getCause() instanceof Error) {
            throw (Error) e.getCause();
          }
          throw e;
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 06 00:47:57 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/eventbus/Subscriber.java

        } catch (IllegalArgumentException e) {
          throw new Error("Method rejected target/argument: " + event, e);
        } catch (IllegalAccessException e) {
          throw new Error("Method became inaccessible: " + event, e);
        } catch (InvocationTargetException e) {
          if (e.getCause() instanceof Error) {
            throw (Error) e.getCause();
          }
          throw e;
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 06 00:47:57 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  8. istioctl/pkg/wait/wait_test.go

    			args:             strings.Split("--timeout 20ms virtual-service bar.default", " "),
    			wantException:    true,
    			expectedOutput:   "Error: timeout expired before resource networking.istio.io/v1alpha3/VirtualService/default/bar became effective on all sidecars\n",
    		},
    		{
    			execClientConfig: cannedResponseMap,
    			args:             strings.Split("--timeout 2s virtualservice foo.default", " "),
    			wantException:    false,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 08:28:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. tests/integration/telemetry/tracing/tracing.go

    			len(got.ChildSpans), len(want.ChildSpans))
    		return false
    	} else if len(got.ChildSpans) > len(want.ChildSpans) {
    		t.Logf("got %d child spans from, want %d child spans, maybe destination rule has not became effective",
    			len(got.ChildSpans), len(want.ChildSpans))
    		return false
    	}
    	for i := range got.ChildSpans {
    		if !CompareTrace(t, *got.ChildSpans[i], *want.ChildSpans[i]) {
    			return false
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 19:05:09 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/lockedfile/lockedfile.go

    	// Close method is what releases the locks, so use a finalizer to report
    	// missing Close calls on a best-effort basis.
    	runtime.SetFinalizer(f, func(f *File) {
    		panic(fmt.Sprintf("lockedfile.File %s became unreachable without a call to Close", f.Name()))
    	})
    
    	return f, nil
    }
    
    // Open is like os.Open, but returns a read-locked file.
    func Open(name string) (*File, error) {
    	return OpenFile(name, os.O_RDONLY, 0)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 5.1K bytes
    - Viewed (0)
Back to top