Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 125 for other2 (0.17 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

        result:
          other: a
      - description: add field and delete all fields from map
        original:
          name: 1
          value: 1
        twoWay:
          name: null
          value: null
          other: a
        modified:
          other: a
        current:
          name: 1
          value: 1
          other: a
        threeWay:
          name: null
          value: null
        result:
          other: a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

            current4_(other.current4_),
            begin5_(other.begin5_),
            end5_(other.end5_),
            current5_(other.current5_),
            begin6_(other.begin6_),
            end6_(other.end6_),
            current6_(other.current6_),
            begin7_(other.begin7_),
            end7_(other.end7_),
            current7_(other.current7_),
            begin8_(other.begin8_),
            end8_(other.end8_),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 187.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

            current4_(other.current4_),
            begin5_(other.begin5_),
            end5_(other.end5_),
            current5_(other.current5_),
            begin6_(other.begin6_),
            end6_(other.end6_),
            current6_(other.current6_),
            begin7_(other.begin7_),
            end7_(other.end7_),
            current7_(other.current7_),
            begin8_(other.begin8_),
            end8_(other.end8_),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 187.7K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/validation/validation_test.go

    			SideEffects:  &unknownSideEffect,
    			FailurePolicy: func() *admissionregistration.FailurePolicyType {
    				r := admissionregistration.FailurePolicyType("other")
    				return &r
    			}(),
    		},
    		}, true),
    		expectedError: `webhooks[0].failurePolicy: Unsupported value: "other": supported values: "Fail", "Ignore"`,
    	}, {
    		name: "AdmissionReviewVersions are required",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * {@code AsyncClosingFunction.apply}. Any heavyweight operations should occur in other threads
       * responsible for completing the returned {@code ClosingFuture}.)
       *
       * <p>After calling this method, you may not call {@link #finishToFuture()}, {@link
       * #finishToValueAndCloser(ValueAndCloserConsumer, Executor)}, or any other derivation method on
       * the original {@code ClosingFuture} instance.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * {@code AsyncClosingFunction.apply}. Any heavyweight operations should occur in other threads
       * responsible for completing the returned {@code ClosingFuture}.)
       *
       * <p>After calling this method, you may not call {@link #finishToFuture()}, {@link
       * #finishToValueAndCloser(ValueAndCloserConsumer, Executor)}, or any other derivation method on
       * the original {@code ClosingFuture} instance.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  7. fastapi/routing.py

                Doc(
                    """
                    The default response class to be used.
    
                    Read more in the
                    [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/#default-response-class).
                    """
                ),
            ] = Default(JSONResponse),
            responses: Annotated[
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Maps.java

          }
          if (object instanceof MapDifference) {
            MapDifference<?, ?> other = (MapDifference<?, ?>) object;
            return entriesOnlyOnLeft().equals(other.entriesOnlyOnLeft())
                && entriesOnlyOnRight().equals(other.entriesOnlyOnRight())
                && entriesInCommon().equals(other.entriesInCommon())
                && entriesDiffering().equals(other.entriesDiffering());
          }
          return false;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Maps.java

          }
          if (object instanceof MapDifference) {
            MapDifference<?, ?> other = (MapDifference<?, ?>) object;
            return entriesOnlyOnLeft().equals(other.entriesOnlyOnLeft())
                && entriesOnlyOnRight().equals(other.entriesOnlyOnRight())
                && entriesInCommon().equals(other.entriesInCommon())
                && entriesDiffering().equals(other.entriesDiffering());
          }
          return false;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    	// Spin only few times and only if running on a multicore machine and
    	// GOMAXPROCS>1 and there is at least one other running P and local runq is empty.
    	// As opposed to runtime mutex we don't do passive spinning here,
    	// because there can be work on global runq or on other Ps.
    	if i >= active_spin || ncpu <= 1 || gomaxprocs <= sched.npidle.Load()+sched.nmspinning.Load()+1 {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top