Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 2,533 for happen (0.14 sec)

  1. pkg/kubelet/pluginmanager/reconciler/reconciler_test.go

    	// Add the plugin again to update the timestamp
    	dsw.AddOrUpdatePlugin(socketPath)
    	// This should trigger a deregistration and a regitration
    	// The process of unregistration and reregistration can happen so fast that
    	// we are not able to catch it with waitForUnregistration, so here we are checking
    	// the plugin has an updated timestamp.
    	waitForRegistration(t, socketPath, timeStampBeforeReRegistration, asw)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/transforms/get_alternative_subgraph.cc

      }
    
     private:
      void runOnOperation() override;
    
      // Given a func and targeted devices, we will try to clonse the func &
      // transform/optimize for those devices.
      // This will only happen if the whole subgraph can be supported by the target
      // or can be supported after some transformations.
      void GetAlternativeGraphForFunc(ArrayRef<std::string> devices,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/export_tf_dialect_op.cc

            tshape.add_dim()->set_size(mlir::ShapedType::isDynamic(dim) ? -1 : dim);
          }
        } else {
          tshape.set_unknown_rank(true);
        }
      }
    
      // If shape is already set, override it. This can happen if we import
      // without shape inference enabled and so couldn't be removed on import and
      // are not explicitly dropped later.
      (*values)[string(name)] = value;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. test/chan/select5.go

    const header = `// GENERATED BY select5.go; DO NOT EDIT
    
    package main
    
    // channel is buffered so test is single-goroutine.
    // we are not interested in the concurrency aspects
    // of select, just testing that the right calls happen.
    var c = make(chan int, 1)
    var nilch chan int
    var n = 1
    var x int
    var i interface{}
    var dummy = make(chan int)
    var m = make(map[int]int)
    var order = 0
    
    func f(p *int) *int {
    	return p
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10K bytes
    - Viewed (0)
  5. pilot/pkg/model/extensions.go

    		return typeapi.WorkloadMode_SERVER
    	case istionetworking.ListenerClassSidecarOutbound:
    		return typeapi.WorkloadMode_CLIENT
    	case istionetworking.ListenerClassUndefined:
    		// this should not happen, just in case
    		return typeapi.WorkloadMode_CLIENT
    	}
    	return typeapi.WorkloadMode_CLIENT
    }
    
    type WasmPluginWrapper struct {
    	*extensions.WasmPlugin
    
    	Name            string
    	Namespace       string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/Daemon.java

         * like we need to. This may change in the future if we create a way to interrupt a build.
         * <p>
         * What will happen though is that the daemon will immediately disconnect from any clients and remove itself
         * from the registry.
         */
        @Override
        public void stop() {
            LOGGER.debug("stop() called on daemon");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. pilot/pkg/model/typed_xds_cache.go

    		return
    	}
    	// It will not overflow until year 2262
    	token := CacheToken(pushReq.Start.UnixNano())
    	l.mu.Lock()
    	defer l.mu.Unlock()
    	if token < l.token {
    		// entry may be stale, we need to drop it. This can happen when the cache is invalidated
    		// after we call Clear or ClearAll.
    		return
    	}
    	cur, f := l.store.Get(k)
    	if f {
    		// This is the stale or same resource
    		if token <= cur.token {
    			return
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/helpers.go

    			LocalhostRef: *profile.LocalhostProfile,
    		}
    		deprecatedProfile = v1.DeprecatedAppArmorBetaProfileNamePrefix + *profile.LocalhostProfile
    
    	default:
    		// Shouldn't happen.
    		return nil, "", fmt.Errorf("unknown apparmor profile type: %q", profile.Type)
    	}
    
    	return securityProfile, deprecatedProfile, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotcontents.yaml

                        bidirectional binding to be valid. For a pre-existing VolumeSnapshotContent
                        object, name and namespace of the VolumeSnapshot object MUST be
                        provided for binding to happen. This field is immutable after creation.
                        Required.
                      properties:
                        apiVersion:
                          description: API version of the referent.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 25.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/gc.go

    		defaultGcFlags = append(defaultGcFlags, "-dwarf=false")
    	}
    	if strings.HasPrefix(ToolchainVersion, "go1") && !strings.Contains(os.Args[0], "go_bootstrap") {
    		defaultGcFlags = append(defaultGcFlags, "-goversion", ToolchainVersion)
    	}
    	if p.Internal.Cover.Cfg != "" {
    		defaultGcFlags = append(defaultGcFlags, "-coveragecfg="+p.Internal.Cover.Cfg)
    	}
    	if pgoProfile != "" {
    		defaultGcFlags = append(defaultGcFlags, "-pgoprofile="+pgoProfile)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top