Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 599 for Avery (0.05 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    1. Use the `configureEach` method on the `suites` container to configure every test suite the same way.
    2. Use `withType` and `matching` with `configureEach` to filter test suites and configure a subset of them.
    3. Extract the configuration block to a local variable and apply it only to the desired test suites.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. pkg/kubelet/util/manager/watch_based_manager.go

    // It implements the following logic:
    //   - whenever a pod is created or updated, we start individual watches for all
    //     referenced objects that aren't referenced from other registered pods
    //   - every GetObject() returns a value from local cache propagated via watches
    func NewWatchBasedManager(
    	listObject listObjectFunc,
    	watchObject watchObjectFunc,
    	newObject newObjectFunc,
    	isImmutable isImmutableFunc,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. tests/integration/telemetry/api/accesslogs_test.go

    				},
    				HTTP: echo.HTTP{
    					Path: "/" + testID,
    				},
    			})
    			// This is a negative test; there isn't much we can do other than wait a few seconds and ensure we didn't emit logs
    			// Logs should flush every 1s, so 2s should be plenty of time for logs to be emitted
    			time.Sleep(time.Second * 2)
    			count = logCount(t, to, testID)
    			if count > 0 != expectLogs {
    				return fmt.Errorf("expected logs '%v', got %v", expectLogs, count)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. pkg/controller/cronjob/utils.go

    	var mostRecentTime time.Time
    	// to get the most recent time accurate for regular schedules and the ones
    	// specified with @every form, we first need to calculate the potential earliest
    	// time by multiplying the initial number of missed schedules by its interval,
    	// this is critical to ensure @every starts at the correct time, this explains
    	// the numberOfMissedSchedules-1, the additional -1 serves there to go back
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	// flowSchemas holds the flow schema objects, sorted by increasing
    	// numerical (decreasing logical) matching precedence.  Every
    	// FlowSchema in this slice is immutable.
    	flowSchemas apihelpers.FlowSchemaSequence
    
    	// priorityLevelStates maps the PriorityLevelConfiguration object
    	// name to the state for that level.  Every name referenced from a
    	// member of `flowSchemas` has an entry here.
    	priorityLevelStates map[string]*priorityLevelState
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  6. pkg/kubelet/pleg/generic_test.go

    		}},
    		{Pod: &kubecontainer.Pod{
    			ID: "4567",
    			Containers: []*kubecontainer.Container{
    				createTestContainer("c1", kubecontainer.ContainerStateExited),
    			},
    		}},
    	}
    	pleg.Relist()
    	// Report every running/exited container if we see them for the first time.
    	expected := []*PodLifecycleEvent{
    		{ID: "1234", Type: ContainerStarted, Data: "c2"},
    		{ID: "4567", Type: ContainerDied, Data: "c1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/compilability_check_util.cc

      if (!s.ok()) {
        *uncompilable_reason = s.message();
        return false;
      }
      return true;
    }
    
    // Tests whether 'if_node' is compilable. Every operator in the then_branch and
    // else_branch functions must be compilable for 'if_node' to be compilable.
    bool RecursiveCompilabilityChecker::IsCompilableIf(
        const Node& if_node, FunctionLibraryRuntime* lib_runtime,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. src/net/mail/message_test.go

    		`<" "@example.com>`,
    		`<******@****.***>`,
    		`<"dot.and space"@example.com>`,
    		`<"very******@****.***"@example.com>`,
    		`<admin@mailserver1>`,
    		`<postmaster@localhost>`,
    		"<#!$%&'*+-/=?^_`{}|~@example.org>",
    		`<"very.(),:;<>[]\".VERY.\"very@\\ \"very\".unusual"@strange.example.com>`, // escaped quotes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/primitives/Ints.java

      }
    
      /**
       * Returns the least value present in {@code array}.
       *
       * @param array a <i>nonempty</i> array of {@code int} values
       * @return the value present in {@code array} that is less than or equal to every other value in
       *     the array
       * @throws IllegalArgumentException if {@code array} is empty
       */
      @GwtIncompatible(
          "Available in GWT! Annotation is to avoid conflict with GWT specialization of base class.")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  10. src/cmd/trace/gstate.go

    	// of picking up stack traces, since the parser doesn't provide
    	// a stack for every state transition event.
    	lastStopStack trace.Stack
    
    	// activeRanges is the set of all active ranges on the goroutine.
    	activeRanges map[string]activeRange
    
    	// completedRanges is a list of ranges that completed since before the
    	// goroutine stopped executing. These are flushed on every stop or block.
    	completedRanges []completedRange
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top