Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 63 for expiring (0.38 sec)

  1. testing/internal-integ-testing/build.gradle.kts

        api(project(":hashing"))
        api(project(":internal-testing")) {
            because("Part of the public API")
        }
        api(project(":stdlib-java-extensions"))
        api(project(":jvm-services")) {
            because("Exposing jvm metadata via AvailableJavaHomes")
        }
        api(project(":launcher"))
        api(project(":logging"))
        api(project(":logging-api"))
        api(project(":native"))
        api(project(":persistent-cache"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/pin_ops_with_side_effects.cc

      // We only need to consider functions with single-block bodies, as
      // this is an assumption flatbuffer_export makes, and this pass is
      // operating on IRs ready for exporting.
      for (Operation &op : fn.getBody().front().without_terminator()) {
        // We have to recurse, since we might have wrapped a side-effectful operator
        // in a tfl::CustomTfOp.
        if (op.walk([&](Operation *inner_op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. hack/apidiff.sh

    else
        runWorktree "${KUBE_TEMP}/after" "${KUBE_TEMP}/target" "${target}"
    fi
    runWorktree "${KUBE_TEMP}/before" "${KUBE_TEMP}/base" "${base}"
    
    # Now produce a report. All changes get reported because exporting some API
    # unnecessarily might also be good to know, but the final exit code will only
    # be non-zero if there are incompatible changes.
    #
    # The report is Markdown-formatted and can be copied into a PR comment verbatim.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:00:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/set_tpu_infeed_layout.cc

        if (failed(layout)) return mlir::WalkResult::interrupt();
        // Do not append a UnitAttr for the "token" operand here to avoid
        // compilation failure when exporting the "layouts" attribute to a graph
        // node. Instead, add the UnitAttr during LegalizeTF pass.
        op->setAttr("layouts", layout.value());
    
        return mlir::WalkResult::advance();
      });
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. pkg/config/analysis/local/context.go

    	"istio.io/istio/pkg/config/schema/collections"
    	sresource "istio.io/istio/pkg/config/schema/resource"
    	"istio.io/istio/pkg/log"
    )
    
    // NewContext allows tests to use istiodContext without exporting it.  returned context is not threadsafe.
    func NewContext(stores map[cluster.ID]model.ConfigStore, cancelCh <-chan struct{}, collectionReporter CollectionReporterFn) analysis.Context {
    	return &istiodContext{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/CopySpecWrapper.java

    import javax.annotation.Nullable;
    import javax.inject.Inject;
    import java.io.FilterReader;
    import java.util.Map;
    import java.util.Set;
    import java.util.regex.Pattern;
    
    /**
     * Wraps another CopySpec impl, only exposing the CopySpec API.
     *
     * Prevents users from accessing "internal" methods on implementations.
     */
    @NonExtensible
    public class CopySpecWrapper implements SyncSpec {
    
        @VisibleForTesting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 10:41:40 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. src/cmd/trace/threadgen.go

    	}
    	if from == trace.GoNotExist && to == trace.GoRunnable {
    		// Goroutine was created.
    		gs.created(ev.Time(), ev.Thread(), ev.Stack())
    	}
    	if from == trace.GoSyscall {
    		// Exiting syscall.
    		gs.syscallEnd(ev.Time(), to != trace.GoRunning, ctx)
    	}
    
    	// Handle syscalls.
    	if to == trace.GoSyscall {
    		start := ev.Time()
    		if from == trace.GoUndetermined {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. src/runtime/debugcall.go

    		if gp.lockedm != 0 {
    			gp.lockedm = 0
    			gp.m.lockedg = 0
    		}
    
    		// Switch back to the calling goroutine. At some point
    		// the scheduler will schedule us again and we'll
    		// finish exiting.
    		trace := traceAcquire()
    		if trace.ok() {
    			// Trace the event before the transition. It may take a
    			// stack trace, but we won't own the stack after the
    			// transition anymore.
    			trace.GoSched()
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 20:50:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. cni/pkg/nodeagent/cni-watcher.go

    		select {
    		case <-s.ctx.Done():
    			// ctx done, we should silently go away
    			return
    		default:
    			// If the cniListener exits, at least we should record an error log
    			log.Errorf("CNI listener server exiting unexpectedly: %v", err)
    		}
    	}()
    
    	context.AfterFunc(s.ctx, func() {
    		if err := s.cniListenServer.Close(); err != nil {
    			log.Errorf("CNI listen server terminated with error: %v", err)
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. src/cmd/trace/procgen.go

    		// (i.e. the G has been blocked in a syscall).
    		gs.syscallBegin(start, ev.Proc(), ev.Stack())
    		g.inSyscall[ev.Proc()] = gs
    	}
    	// Check if we're exiting a non-blocking syscall.
    	_, didNotBlock := g.inSyscall[ev.Proc()]
    	if from == trace.GoSyscall && didNotBlock {
    		gs.syscallEnd(ev.Time(), false, ctx)
    		delete(g.inSyscall, ev.Proc())
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top