Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for not (0.04 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * @return The value of found property. (NotNull: if not found, exception)
         * @throws ConfigPropertyNotFoundException When the property is not found.
         */
        String get(String propertyKey);
    
        /**
         * Is the property true?
         * @param propertyKey The key of the property which is boolean type. (NotNull)
         * @return The determination, true or false. (if not found, exception)
    Registered: 2024-10-31 13:40
    - Last Modified: 2024-10-11 21:11
    - 468.5K bytes
    - Viewed (1)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      // Probes are not allowed for ephemeral containers.
      // +optional
      optional Probe livenessProbe = 10;
    
      // Probes are not allowed for ephemeral containers.
      // +optional
      optional Probe readinessProbe = 11;
    
      // Probes are not allowed for ephemeral containers.
      // +optional
      optional Probe startupProbe = 22;
    
      // Lifecycle is not allowed for ephemeral containers.
    Registered: 2024-11-06 22:53
    - Last Modified: 2024-03-11 18:43
    - 255.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/user/cbean/cq/bs/BsUserCQ.java

            bool((must, should, mustNot, filter) -> {
                filteredLambda.callback(must, filter);
            }, opLambda);
        }
    
        public void not(OperatorCall<UserCQ> notLambda) {
            not(notLambda, null);
        }
    
        public void not(final OperatorCall<UserCQ> notLambda, final ConditionOptionCall<BoolQueryBuilder> opLambda) {
            bool((must, should, mustNot, filter) -> notLambda.callback(mustNot), opLambda);
    Registered: 2024-10-31 13:40
    - Last Modified: 2024-02-22 01:37
    - 326.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.31.md

    - Fixed the bug where if Endpointslices mirrored from Endpoints by the EndpointSliceMirroring controller they would not reconcile if modified. were not reconciled if modified ([#124131](https://github.com/kubernetes/kubernetes/pull/124131), [@zyjhtangtang](https://github.com/zyjhtangtang)) [SIG Apps and Network]
    Registered: 2024-11-01 09:05
    - Last Modified: 2024-10-23 12:18
    - 315.4K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.10.md

    * GCP: allow a master to not include a metadata concealment firewall rule (if it's not running the metadata proxy). ([#58104](https://github.com/kubernetes/kubernetes/pull/58104), [@ihmccreery](https://github.com/ihmccreery))
    
    Registered: 2024-11-01 09:05
    - Last Modified: 2022-05-05 13:44
    - 341.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.11.md

    to take some action immediately after upgrading. In multi-tenant clusters where not all users are trusted, you are advised to create appropriate quotas for two default priority classes, system-cluster-critical and system-node-critical, which are added to clusters by default. `ResourceQuota` should be created to limit users from creating Pods at these priorities if not all users of your cluster are trusted. We do not advise disabling this feature because critical system Pods rely on the scheduler...
    Registered: 2024-11-01 09:05
    - Last Modified: 2020-02-06 06:04
    - 328.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.14.md

    * Fixes a memory leak in Kubelet on Windows caused by not not closing containers when fetching container metrics ([#78594](https://github.com/kubernetes/kubernetes/pull/78594), [@benmoss](https://github.com/benmoss))
    
    
    
    # v1.14.3
    
    [Documentation](https://docs.k8s.io)
    
    ## Downloads for v1.14.3
    
    
    Registered: 2024-11-01 09:05
    - Last Modified: 2021-06-14 22:06
    - 271.5K bytes
    - Viewed (0)
  8. doc/go_spec.html

    myString("foo" + "bar")  // "foobar" of type myString
    string([]byte{'a'})      // not a constant: []byte{'a'} is not a constant
    (*int)(nil)              // not a constant: nil is not a constant, *int is not a boolean, numeric, or string type
    int(1.2)                 // illegal: 1.2 cannot be represented as an int
    string(65.0)             // illegal: 65.0 is not an integer constant
    </pre>
    
    <p>
    Registered: 2024-11-05 11:13
    - Last Modified: 2024-10-02 00:58
    - 282.5K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.29.md

      
      This is currently an alpha-level feature and while it probably will not
      eat your data, it may nibble at it a bit. (It passes e2e testing but has
      not yet seen real-world use.)
      
      At this point it should be functionally mostly identical to the iptables
      mode, except that it does not (and will not) support Service NodePorts on
      127.0.0.1. (Also note that there are currently no command-line arguments
    Registered: 2024-11-01 09:05
    - Last Modified: 2024-10-23 04:37
    - 375.1K bytes
    - Viewed (1)
  10. CHANGELOG/CHANGELOG-1.9.md

    ### Other notable changes
    
    Registered: 2024-11-01 09:05
    - Last Modified: 2021-11-16 10:46
    - 313.7K bytes
    - Viewed (0)
Back to top