Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 48 for SKIPPED (0.27 sec)

  1. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    // either parsed or skipped. Alternatively, all Questions can be skipped at
    // once. When all Questions have been parsed, attempting to parse Questions
    // will return the [ErrSectionDone] error.
    // After all Questions have been either parsed or skipped, all
    // Answers, Authorities and Additionals can be either parsed or skipped in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                        artifact jar
                    }
                }
            }
            """)
    
            when:
            run "generateMetadataFileForJavaPublication"
    
            then:
            skipped(':generateMetadataFileForJavaPublication')
            outputContains "Ivy publication 'java' isn't attached to a component. Gradle metadata only supports publications with software components (e.g. from component.java)"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/runtime/framework.go

    		}
    
    		disabledSet := sets.New[string]()
    		for _, disabledPlugin := range e.plugins.Disabled {
    			disabledSet.Insert(disabledPlugin.Name)
    		}
    		if disabledSet.Has("*") {
    			logger.V(4).Info("Skipped MultiPoint expansion because all plugins are disabled for extension point", "extension", pluginType)
    			continue
    		}
    
    		// track plugins enabled via multipoint separately from those enabled by specific extensions,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  4. src/cmd/dist/test.go

    				timelog("skip", w.dt.name)
    				w.printSkip(t, "skipped due to earlier error")
    			} else {
    				timelog("start", w.dt.name)
    				w.err = w.cmd.Run()
    				if w.flush != nil {
    					w.flush()
    				}
    				if w.err != nil {
    					if isUnsupportedVMASize(w) {
    						timelog("skip", w.dt.name)
    						w.out.Reset()
    						w.printSkip(t, "skipped due to unsupported VMA")
    						w.err = nil
    					}
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. cmd/object-api-multipart_test.go

    				},
    			},
    		},
    		// listMultipartResults - 17.
    		// Testing for listing of 3 uploadID's (uploadIDs[1-3]) for a given object with uploadID Marker set.
    		// uploadIDs[1] is set as UploadMarker, Expecting it to be skipped in the result.
    		// uploadIDs[2] and uploadIDs[3] are expected to be in the result.
    		// Istruncted is expected to be false.
    		// Will be used to list on bucketNames[1].
    		{
    			MaxUploads:     100,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_attacher_test.go

    			deviceMountPath: "plugins/csi/" + generateSha("project/zone/test-vol1") + "/globalmount",
    			jsonFile:        `{"driverName":"test-driver","volumeHandle":"test-vol1"}`,
    			stageUnstageSet: false,
    		},
    		// PV agnostic path negative test cases
    		{
    			testName:        "success: json file doesn't exist, unmount device is skipped",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Iterators.java

        checkNonnegative(position);
        int skipped = advance(iterator, position);
        if (!iterator.hasNext()) {
          throw new IndexOutOfBoundsException(
              "position ("
                  + position
                  + ") must be less than the number of elements that remained ("
                  + skipped
                  + ")");
        }
        return iterator.next();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Iterators.java

        checkNonnegative(position);
        int skipped = advance(iterator, position);
        if (!iterator.hasNext()) {
          throw new IndexOutOfBoundsException(
              "position ("
                  + position
                  + ") must be less than the number of elements that remained ("
                  + skipped
                  + ")");
        }
        return iterator.next();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller.go

    	}
    
    	if job.Spec.CompletionMode != nil && *job.Spec.CompletionMode != batch.NonIndexedCompletion && *job.Spec.CompletionMode != batch.IndexedCompletion {
    		jm.recorder.Event(&job, v1.EventTypeWarning, "UnknownCompletionMode", "Skipped Job sync because completion mode is unknown")
    		return nil
    	}
    
    	completionMode := getCompletionMode(&job)
    	action := metrics.JobSyncActionReconciling
    
    	defer func() {
    		result := "success"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  10. pkg/controller/daemon/daemon_controller.go

    					dsc.expectations.CreationObserved(logger, dsKey)
    					errCh <- err
    					utilruntime.HandleError(err)
    				}
    			}(i)
    		}
    		createWait.Wait()
    		// any skipped pods that we never attempted to start shouldn't be expected.
    		skippedPods := createDiff - (batchSize + pos)
    		if errorCount < len(errCh) && skippedPods > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top