Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 682 for Forked (0.34 sec)

  1. pkg/kubelet/volumemanager/reconciler/reconstruct_test.go

    					return fmt.Errorf("expected 1 uncertain volume in asw got %d", len(volumes))
    				}
    				// The volume should be marked as reconstructed in ASW
    				if reconstructed := rcInstance.actualStateOfWorld.IsVolumeReconstructed("fake-plugin/pvc-abcdef", "pod1"); !reconstructed {
    					t.Errorf("expected volume to be marked as reconstructed, got %v", reconstructed)
    				}
    				return nil
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/TestTaskSpec.groovy

            task.addTestListener(testListener)
    
            when:
            task.executeTests()
    
            then:
            1 * testListener.beforeTest(_)
    
            when:
            // rewire a mocked TestReporter as it gets removed by AbstractTestTask#createReporting()
            task.testReporter = Mock(TestReporter)
            task.executeTests()
    
            then:
            0 * testListener.beforeTest(_)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. src/runtime/metrics/description.go

    		Kind:        KindUint64,
    		Cumulative:  true,
    	},
    	{
    		Name:        "/gc/cycles/forced:gc-cycles",
    		Description: "Count of completed GC cycles forced by the application.",
    		Kind:        KindUint64,
    		Cumulative:  true,
    	},
    	{
    		Name:        "/gc/cycles/total:gc-cycles",
    		Description: "Count of all completed GC cycles.",
    		Kind:        KindUint64,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/internal/language/parse.go

    			return false
    		}
    	}
    	return true
    }
    
    // ErrSyntax is returned by any of the parsing functions when the
    // input is not well-formed, according to BCP 47.
    // TODO: return the position at which the syntax error occurred?
    var ErrSyntax = errors.New("language: tag is not well-formed")
    
    // ErrDuplicateKey is returned when a tag contains the same key twice with
    // different values in the -u section.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. .github/actions/notify-translations/app/main.py

                logging.info(f"Already approved or closed PR #{pr.number}")
                if already_done_comment:
                    logging.info(
                        f"This PR #{pr.number} was already marked as done in comment: {already_done_comment.url}"
                    )
                elif already_notified_comment:
                    updated_comment = update_comment(
                        settings=settings,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 23:01:46 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  6. internal/ringbuffer/ring_buffer.go

    	go func() {
    		select {
    		case <-ctx.Done():
    			r.CloseWithError(ctx.Err())
    		}
    	}()
    	return r
    }
    
    func (r *RingBuffer) setErr(err error, locked bool) error {
    	if !locked {
    		r.mu.Lock()
    		defer r.mu.Unlock()
    	}
    	if r.err != nil && r.err != io.EOF {
    		return r.err
    	}
    
    	switch err {
    	// Internal errors are transient
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncompatibleTasksIntegrationTest.groovy

            result.assertTasksExecuted(":declared")
            assertStateStoredAndDiscardedForDeclaredTask(9)
        }
    
        def "incompatible task problems are not subtracted from max-problems but problems from tasks that are not marked incompatible are"() {
            given:
            addTasksWithProblems()
    
            when:
            configurationCacheFails "declared", "notDeclared", "$MAX_PROBLEMS_SYS_PROP=2", WARN_PROBLEMS_CLI_OPT
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/upgrade/policy_test.go

    			expectedMandatoryErrs: 1, // can't downgrade two minor versions
    		},
    		{
    			name: "kubeadm version must be higher than the new kube version. However, patch version skews may be forced",
    			vg: &fakeVersionGetter{
    				clusterVersion: minimumControlPlaneVersion.WithPatch(3).String(),
    				kubeletVersion: minimumKubeletVersion.WithPatch(3).String(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 03:17:05 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultRepositoryContentDescriptor.java

        private Set<String> excludedConfigurations;
        private Set<ContentSpec> includeSpecs;
        private Set<ContentSpec> excludeSpecs;
        private Map<Attribute<Object>, Set<Object>> requiredAttributes;
        private boolean locked;
    
        private Action<? super ArtifactResolutionDetails> cachedAction;
        private final Supplier<String> repositoryNameSupplier;
        private final VersionSelectorScheme versionSelectorScheme;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultFileLockManager.java

             * <br><br>
             *
             * Lock file is {@link java.io.RandomAccessFile} that has two regions:
             * - lock state region, locked for the duration of the operation
             * - lock info region, locked just to write the lock info or read info from it
             * <br><br>
             *
             * Algorithm:<br>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top