Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1451 - 1460 of 3,026 for FALSE (0.03 sec)

  1. android/guava-tests/test/com/google/common/collect/MultimapsTest.java

        checkUnmodifiableMultimap(HashMultimap.<@Nullable String, @Nullable Integer>create(), false);
      }
    
      @J2ktIncompatible
      @GwtIncompatible // SerializableTester
      public void testSerializingUnmodifiableHashMultimap() {
        Multimap<String, Integer> unmodifiable =
            prepareUnmodifiableTests(HashMultimap.<String, Integer>create(), false, null, null);
        SerializableTester.reserializeAndAssert(unmodifiable);
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

         */
        @Override
        public boolean isAsync () {
            return false;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.CommonServerMessageBlockRequest#isResponseAsync()
         */
        @Override
        public boolean isResponseAsync () {
            return false;
        }
    
    
        /**
         * {@inheritDoc}
         *
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 32.7K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/batch/v1/generated.proto

      // controller. If a Job is suspended after creation (i.e. the flag goes from
      // false to true), the Job controller will delete all active Pods associated
      // with this Job. Users must design their workload to gracefully handle this.
      // Suspending a Job will reset the StartTime field of the Job, effectively
      // resetting the ActiveDeadlineSeconds timer too. Defaults to false.
      //
      // +optional
      optional bool suspend = 10;
    }
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. istioctl/pkg/kubeinject/testdata/istio-operator.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: test
      namespace: istio-system
    spec:
      meshConfig:
        # Set enableTracing to false to disable request tracing.
        enableTracing: true
        # This is the ingress service name, update if you used a different name
        ingressService: istio-ingress
        connectTimeout: 1s
        defaultConfig:
          ### ADVANCED SETTINGS #############
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 689 bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java

                        || compareTime(fromHours, fromMinutes, hours, minutes) >= 0 && isInDays(day)) {
                    return true;
                }
                return false;
            }
    
            private boolean isInDays(final int day) {
                if (days.length == 0) {
                    return true;
                }
                int value;
                if (day == 8) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/group/ApiAdminGroupAction.java

                throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToUpdateCrudTable(GLOBAL, buildThrowableMessage(e)));
            }
            return asJson(new ApiResult.ApiUpdateResponse().id(entity.getId()).created(false).status(ApiResult.Status.OK).result());
        }
    
        // DELETE /api/admin/group/setting/{id}
        @Execute
        public JsonResponse<ApiResult> delete$setting(final String id) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/it/admin/PluginTests.java

            // Install
            {
                checkPutMethod(targetMap, getInstallEndpointSuffix()).then().body("response.status", equalTo(0));
    
                boolean done = false;
                for (int i = 0; i < 60; i++) {
                    final List<Map<String, Object>> installed = checkGetMethod(Collections.emptyMap(), getInstalledEndpointSuffix() + "/")
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jul 01 02:20:48 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. compat/maven-model-builder/src/main/java/org/apache/maven/model/composition/DefaultDependencyManagementImporter.java

                while (i1.hasNext() && i2.hasNext()) {
                    if (!equals(i1.next(), i2.next())) {
                        return false;
                    }
                }
                return !i1.hasNext() && !i2.hasNext();
            }
            return false;
        }
    
        private boolean equals(Exclusion e1, Exclusion e2) {
            return Objects.equals(e1.getGroupId(), e2.getGroupId())
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. api/maven-api-plugin/src/main/mdo/lifecycle.mdo

              <description>The ID of this phase, e.g., {@code generate-sources}.</description>
            </field>
            <field xml.attribute="true">
              <name>executionPoint</name>
              <required>false</required>
              <version>2.0.0+</version>
              <type>String</type>
              <defaultValue><![CDATA[]]></defaultValue>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Aug 29 05:48:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/exception/DataStoreCrawlingException.java

        private final String url;
    
        private final boolean abort;
    
        public DataStoreCrawlingException(final String url, final String message, final Exception e) {
            this(url, message, e, false);
        }
    
        public DataStoreCrawlingException(final String url, final String message, final Exception e, final boolean abort) {
            super(message, e);
            this.url = url;
            this.abort = abort;
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top