Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 94 for expiring (1.5 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.h

    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/op_or_arg_name_mapper.h"
    #include "tensorflow/lite/toco/toco_flags.pb.h"
    
    namespace tflite {
    // Options for exporting to Flatbuffer.
    struct FlatbufferExportOptions {
      // TocoFlags proto. The following fields are migrated.
      // bool emit_builtin_tflite_ops  -> !toco_flags.force_select_tf_ops()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 09 02:51:43 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. tests/integration/security/policy_attachment_only/testdata/authz/gateway-api.yaml.tmpl

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: {{ .To.ServiceName }}-gateway
    spec:
      gatewayClassName: istio
      listeners:
      - name: http
        # Exposing port 80 isn't the recommended security practice 
        port: 80
        protocol: HTTP
        hostname: "*.{{ .To.ServiceName }}.com"
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: {{ .To.ServiceName }}
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 19:50:43 UTC 2023
    - 729 bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/SnapshotTaskInputsBuildOperationType.java

                void file(VisitState state);
    
                /**
                 * Called when exiting a directory.
                 */
                void postDirectory();
    
                /**
                 * Called when exiting a root.
                 */
                void postRoot();
    
                /**
                 * Called when exiting a property.
                 */
                void postProperty();
            }
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/ContinuousBuildCrossVersionSpec.groovy

        }
    
        private String getExitingContinuousBuildNoInputsDetectedMessage() {
            return usesNativeWatchers()
                ? "Exiting continuous build as Gradle did not detect any file system inputs."
                : "Exiting continuous build as no executed tasks declared file system inputs."
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. pkg/test/framework/components/istio/eastwest.go

    func (i *istioImpl) exposeUserServices(cluster cluster.Cluster) error {
    	scopes.Framework.Infof("Exposing services via eastwestgateway in %v", cluster.Name())
    	return cluster.ApplyYAMLFiles(i.cfg.SystemNamespace, exposeServicesGateway)
    }
    
    func (i *istioImpl) applyIstiodGateway(cluster cluster.Cluster, revision string) error {
    	scopes.Framework.Infof("Exposing istiod via eastwestgateway in %v", cluster.Name())
    	if revision == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 10 02:30:20 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. pkg/util/filesystem/watcher.go

    		// in case the file changed concurrent with calling WatchUntil.
    		eventHandler()
    	}
    
    	for {
    		select {
    		case <-ctx.Done():
    			return
    
    		case <-t.C:
    			// Prioritize exiting if context is canceled
    			if ctx.Err() != nil {
    				return
    			}
    
    			// Try to re-establish the watcher if we previously got a watch error
    			if attemptPeriodicRewatch {
    				_ = watcher.Remove(path)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 23:09:15 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. src/internal/trace/testdata/generators/go122-syscall-steal-proc-gen-boundary-bare-m.go

    	"internal/trace/event/go122"
    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	g := t.Generation(1)
    
    	// One goroutine is exiting with a syscall. It already
    	// acquired a new P.
    	b0 := g.Batch(trace.ThreadID(0), 0)
    	b0.Event("ProcStatus", trace.ProcID(1), go122.ProcRunning)
    	b0.Event("GoStatus", trace.GoID(1), trace.ThreadID(0), go122.GoSyscall)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 956 bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/classrealm/ClassRealmManager.java

         * @return The class realm hosting the Maven core, never {@code null}.
         */
        ClassRealm getCoreRealm();
    
        /**
         * Gets the class realm exposing the Maven API. This is basically a restricted view on the Maven core realm.
         *
         * @return The class realm exposing the Maven API, never {@code null}.
         */
        ClassRealm getMavenApiRealm();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. src/cmd/trace/goroutinegen.go

    		gs.created(ev.Time(), ev.Goroutine(), ev.Stack())
    	}
    	if from == trace.GoSyscall && to != trace.GoRunning {
    		// Exiting blocked syscall.
    		gs.syscallEnd(ev.Time(), true, ctx)
    		gs.blockedSyscallEnd(ev.Time(), ev.Stack(), ctx)
    	} else if from == trace.GoSyscall {
    		// Check if we're exiting a syscall in a non-blocking way.
    		gs.syscallEnd(ev.Time(), false, ctx)
    	}
    
    	// Handle syscalls.
    	if to == trace.GoSyscall {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/VariantArtifactGraphResolveMetadata.java

     * used during graph resolution only in very specific cases.
     *
     * <p>Note: only provides a limited view of the artifact metadata, exposing only that required to perform graph resolution.</p>
     */
    public interface VariantArtifactGraphResolveMetadata {
        List<? extends ComponentArtifactMetadata> getArtifacts();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top