Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 117 for light (0.44 sec)

  1. src/net/netip/netip.go

    		}
    	}
    
    	var ip [16]byte
    	ellipsis := -1 // position of ellipsis in ip
    
    	// Might have leading ellipsis
    	if len(s) >= 2 && s[0] == ':' && s[1] == ':' {
    		ellipsis = 0
    		s = s[2:]
    		// Might be only ellipsis
    		if len(s) == 0 {
    			return IPv6Unspecified().WithZone(zone), nil
    		}
    	}
    
    	// Loop, parsing hex numbers followed by colon.
    	i = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      // quantized types. They only target a specific set of models that contain
      // "decomposed" quantized ops produced from the framework level. This is why
      // they are placed right after the `LegalizeTFXlaCallModuleToStablehloPass`
      // because the quantization patterns should be identified before any
      // optimizations kick in.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. cmd/storage-rest-server.go

    	// If format.json is available and request sent the right disk-id, we allow the request
    	return true
    }
    
    // checkID - check if the disk-id in the request corresponds to the underlying disk.
    func (s *storageRESTServer) checkID(wantID string) bool {
    	if s.getStorage() == nil {
    		return false
    	}
    	if wantID == "" {
    		// Request sent empty disk-id, we allow the request
    		// as the peer might be coming up and trying to read format.json
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_volumes.go

    		return true
    	}
    	// TODO: This checks pod volume paths and whether they are mounted. If checking returns error, podVolumesExist will return true
    	// which means we consider volumes might exist and requires further checking.
    	// There are some volume plugins such as flexvolume might not have mounts. See issue #61229
    	volumePaths, err := kl.getMountedVolumePathListFromDisk(podUID)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set.go

    	// When a delete is dropped, the relist will notice a pod in the store not
    	// in the list, leading to the insertion of a tombstone object which contains
    	// the deleted key/value. Note that this value might be stale.
    	if !ok {
    		tombstone, ok := obj.(cache.DeletedFinalStateUnknown)
    		if !ok {
    			utilruntime.HandleError(fmt.Errorf("couldn't get object from tombstone %+v", obj))
    			return
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster.go

    	// We didn't find a matching instance. Create a dummy one because we need the right
    	// params to generate the right cluster name i.e. inbound|portNumber|portName|SidecarScopeID - which is uniformly generated by LDS/CDS.
    	return &model.Service{
    		Hostname: host.Name(sidecar + "." + sidecarns),
    		Attributes: model.ServiceAttributes{
    			Name: sidecar,
    			// This will ensure that the right AuthN policies are selected
    			Namespace: sidecarns,
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  7. cmd/server-main.go

    		Usage:  "custom TCP_USER_TIMEOUT for socket buffers",
    		Hidden: true,
    		Value:  10 * time.Minute,
    		EnvVar: "MINIO_CONN_USER_TIMEOUT",
    	},
    	cli.StringFlag{
    		Name:   "interface",
    		Usage:  "bind to right VRF device for MinIO services",
    		Hidden: true,
    		EnvVar: "MINIO_INTERFACE",
    	},
    	cli.DurationFlag{
    		Name:   "dns-cache-ttl",
    		Usage:  "custom DNS cache TTL",
    		Hidden: true,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    // rotate will arrange a timer to call itself again when necessary.
    func (f *file) rotate() {
    	expire, cleanup := f.rotate1()
    	cleanup()
    	if !expire.IsZero() {
    		// TODO(rsc): Does this do the right thing for laptops closing?
    		time.AfterFunc(time.Until(expire), f.rotate)
    	}
    }
    
    func nop() {}
    
    // CounterTime returns the current UTC time.
    // Mutable for testing.
    var CounterTime = func() time.Time {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirDataFlowInfoProvider.kt

                val firStatement = firLeaf.statements[0]
                if (firStatement is FirExpression && firStatement.resolvedType == firLeaf.resolvedType) {
                    // Trivial blocks might not appear in the CFG, so here we include their content
                    return firStatement
                }
            }
    
            return firLeaf
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 14:04:46 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

                        val unfinishedTasks = shutdownNow()
                        logger.warn(
                            "Configuration cache report is taking too long to write... "
                                + "The build might finish before the report has been completely written."
                        )
                        logger.info("Unfinished tasks: {}", unfinishedTasks)
                    }
                }
    
                private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top