Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 469 for nothings (0.14 sec)

  1. pilot/pkg/xds/xdsgen.go

    	info := ""
    	if len(logdata.AdditionalInfo) > 0 {
    		info = " " + logdata.AdditionalInfo
    	}
    	if len(logFiltered) > 0 {
    		info += logFiltered
    	}
    	if err != nil || res == nil {
    		// If we have nothing to send, report that we got an ACK for this version.
    		if s.StatusReporter != nil {
    			s.StatusReporter.RegisterEvent(con.ID(), w.TypeUrl, req.Push.LedgerVersion)
    		}
    		if log.DebugEnabled() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/reset/cleanupnode.go

    	}
    }
    
    // CleanDir removes everything in a directory, but not the directory itself
    func CleanDir(filePath string) error {
    	// If the directory doesn't even exist there's nothing to do, and we do
    	// not consider this an error
    	if _, err := os.Stat(filePath); os.IsNotExist(err) {
    		return nil
    	}
    
    	d, err := os.Open(filePath)
    	if err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. cmd/erasure-healing.go

    	if isAllNotFound(errs) {
    		err := errFileNotFound
    		if versionID != "" {
    			err = errFileVersionNotFound
    		}
    		// Nothing to do, file is already gone.
    		return er.defaultHealResult(FileInfo{}, storageDisks, storageEndpoints,
    			errs, bucket, object, versionID), err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ExternalComponentResolveMetadata.java

         * module versions to the more general component instances. Currently, the module version and component identifiers are used interchangeably. However, over
         * time more things will use the component identifier. At some point, the module version identifier will become optional for a component.
         */
        ModuleVersionIdentifier getModuleVersionId();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. pkg/kubelet/userns/userns_manager.go

    	content, err := m.readMappingsFromFile(pod)
    	if err != nil && err != utilstore.ErrKeyNotFound {
    		return err
    	}
    
    	// If no content, it means the pod doesn't have userns. Nothing else to do
    	if len(content) == 0 {
    		return nil
    	}
    
    	_, err = m.parseUserNsFileAndRecord(pod, content)
    	return err
    }
    
    // isSet checks if the specified index is already set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileCollectionCodec.kt

            unsupportedFileTree(fileTree)
    
        private
        fun unsupportedFileTree(fileTree: FileTreeInternal): Nothing =
            throw UnsupportedOperationException(
                "Unexpected file tree '$fileTree' of type '${fileTree.javaClass}' found while serializing a file collection."
            )
    }
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. src/internal/trace/testdata/testprog/stacks.go

    	"time"
    )
    
    func main() {
    	if err := trace.Start(os.Stdout); err != nil {
    		log.Fatalf("failed to start tracing: %v", err)
    	}
    	defer trace.Stop() // in case of early return
    
    	// Now we will do a bunch of things for which we verify stacks later.
    	// It is impossible to ensure that a goroutine has actually blocked
    	// on a channel, in a select or otherwise. So we kick off goroutines
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	assert.NoError(t, err)
    	result = m.SyncPod(context.Background(), pod, podStatus, []v1.Secret{}, backOff)
    	assert.NoError(t, result.Error())
    	verifyContainerStatuses(t, fakeRuntime, expected, "init container still running; do nothing")
    
    	// 3. should create all app containers because init container finished.
    	// Stop init container instance 0.
    	sandboxIDs, err := m.getSandboxIDByPodUID(ctx, pod.UID, nil)
    	require.NoError(t, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

      }
    
      // This test covers a bug where an Error thrown from a callback could cause the TimeoutFuture to
      // never complete when timing out.  Notably, nothing would get logged since the Error would get
      // stuck in the ScheduledFuture inside of TimeoutFuture and nothing ever calls get on it.
    
      // Simulate a timeout that fires before the call the SES.schedule returns but the future is
      // already completed.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

      }
    
      // This test covers a bug where an Error thrown from a callback could cause the TimeoutFuture to
      // never complete when timing out.  Notably, nothing would get logged since the Error would get
      // stuck in the ScheduledFuture inside of TimeoutFuture and nothing ever calls get on it.
    
      // Simulate a timeout that fires before the call the SES.schedule returns but the future is
      // already completed.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
Back to top