Search Options

Results per page
Sort
Preferred Languages
Advance

Results 591 - 600 of 1,545 for revoke (0.06 sec)

  1. tests/test_tutorial/test_header_params/test_tutorial001_py310.py

                                        "title": "User-Agent",
                                    }
                                )
                                | IsDict(
                                    # TODO: remove when deprecating Pydantic v1
                                    {"title": "User-Agent", "type": "string"}
                                ),
                                "name": "user-agent",
                                "in": "header",
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. tests/test_tutorial/test_query_params_str_validations/test_tutorial011_an_py310.py

                                        "title": "Q",
                                    }
                                )
                                | IsDict(
                                    # TODO: remove when deprecating Pydantic v1
                                    {
                                        "title": "Q",
                                        "type": "array",
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. ci/official/pycpp.sh

      PROFILE_JSON_PATH=$(replace_drive_letter_with_c "$TFCI_OUTPUT_DIR")
      PROFILE_JSON_PATH="$PROFILE_JSON_PATH/profile.json.gz"
    else
      PROFILE_JSON_PATH="$TFCI_OUTPUT_DIR/profile.json.gz"
    fi
    
    # TODO(b/361369076) Remove the following block after TF NumPy 1 is dropped
    # Move hermetic requirement lock files for NumPy 1 to the root
    if [[ "$TFCI_WHL_NUMPY_VERSION" == 1 ]]; then
      cp ./ci/official/requirements_updater/numpy1_requirements/*.txt .
    fi
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Wed Oct 23 18:48:35 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Tables.java

          original.putAll(transpose(table));
        }
    
        @Override
        @CheckForNull
        public V remove(@CheckForNull Object rowKey, @CheckForNull Object columnKey) {
          return original.remove(columnKey, rowKey);
        }
    
        @Override
        public Map<R, V> row(@ParametricNullness C rowKey) {
          return original.column(rowKey);
        }
    
        @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 21:21:17 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/graph/DirectedGraphConnections.java

        } else { // successor
          adjacentNodeValues.remove(node);
          removedValue = previousValue;
        }
    
        if (removedValue != null) {
          checkNonNegative(--successorCount);
    
          if (orderedNodeConnections != null) {
            orderedNodeConnections.remove(new NodeConnection.Succ<>((N) node));
          }
        }
    
        /*
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 18K bytes
    - Viewed (0)
  6. internal/grid/msg.go

    	// FlagPayloadIsErr is used to signify that the payload is a string error converted to byte slice.
    	// When a response is received, the mux is already removed from the remote.
    	OpResponse
    
    	// OpDisconnect instructs that remote wants to disconnect
    	OpDisconnect
    
    	// OpMerged is several operations merged into one.
    	OpMerged
    )
    
    const (
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Jul 25 21:07:21 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

            }
            final DataStoreParams localParams = paramMap.newInstance();
            executor.execute(() -> {
                try {
                    final Object eventType = dataMap.remove(getParamValue(localParams, "field.event_type", "event_type"));
                    if (getParamValue(localParams, "event.create", "create").equals(eventType)
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/ForwardingBlockingDeque.java

     *
     * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code
     * default} methods. Instead, it inherits their default implementations. When those implementations
     * invoke methods, they invoke methods on the {@code ForwardingBlockingDeque}.
     *
     * <p>The {@code standard} methods are not guaranteed to be thread-safe, even when all of the
     * methods that they depend on are thread-safe.
     *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/graph/AbstractDirectedNetworkConnections.java

          checkNonNegative(--selfLoopCount);
        }
        N previousNode = inEdgeMap.remove(edge);
        // We're relying on callers to call this method only with an edge that's in the graph.
        return requireNonNull(previousNode);
      }
    
      @Override
      public N removeOutEdge(E edge) {
        N previousNode = outEdgeMap.remove(edge);
        // We're relying on callers to call this method only with an edge that's in the graph.
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  10. tests/test_tutorial/test_query_param_models/test_tutorial002.py

                            "ctx": {"expected": "'created_at' or 'updated_at'"},
                        },
                    ]
                }
            )
            | IsDict(
                # TODO: remove when deprecating Pydantic v1
                {
                    "detail": [
                        {
                            "type": "value_error.number.not_le",
                            "loc": ["query", "limit"],
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Sep 17 18:54:10 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top