Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 982 for selected (0.19 sec)

  1. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                            if (ampm === 'PM' && selected.hour()...
    JavaScript
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Thu Feb 13 04:21:06 GMT 2020
    - 65.7K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/platform/Jdk8WithJettyBootPlatform.kt

              if (protocol in protocols) {
                selected = protocol
                return selected
              }
            }
            selected = protocols[0] // On no intersection, try peer's first protocol.
            return selected
          } else if ((methodName == "protocolSelected" || methodName == "selected") && callArgs.size == 1) {
            this.selected = callArgs[0] as String // Server selected this protocol.
            return null
    Plain Text
    - Registered: Fri Apr 12 11:42:09 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 6K bytes
    - Viewed (0)
  3. cmd/metacache-entries.go

    	if selected != nil && selected.isDir() && dirExists >= r.dirQuorum {
    		return selected, true
    	}
    
    	// If we would never be able to reach read quorum.
    	if objsValid < r.objQuorum {
    		return nil, false
    	}
    
    	// If all objects agree.
    	if selected != nil && objsAgree == objsValid {
    		return selected, true
    	}
    
    	// If cached is nil we shall skip the entry.
    	if selected.cached == nil {
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 22.9K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/advance.jsp

    								key="labels.advance_search_filetype_word"
    							/></option>
    						<option value="excel" <c:if test="${as.filetype.contains('excel')}">selected</c:if>><la:message
    								key="labels.advance_search_filetype_excel"
    							/></option>
    						<option value="powerpoint" <c:if test="${as.filetype.contains('powerpoint')}">selected</c:if>><la:message
    Others
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 14.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

                return false;
            }
    
            if ( !selected.atLeast(getConfig().getMinimumVersion()) || !selected.atMost(getConfig().getMaximumVersion()) ) {
                log.error(
                    String.format(
                        "Server selected an disallowed dialect version %s (min: %s max: %s)",
                        selected,
                        getConfig().getMinimumVersion(),
                        getConfig().getMaximumVersion()));
    Java
    - Registered: Sun Apr 14 00:10:09 GMT 2024
    - Last Modified: Sun Mar 22 10:09:46 GMT 2020
    - 17.6K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/graph/DefaultGraphBuilderTest.java

                    scenario("Project selected with different selector resolves to same project")
                            .activeRequiredProjects(GROUP_ID + ":" + MODULE_A)
                            .inactiveRequiredProjects(MODULE_A)
                            .expectResult(MavenExecutionException.class, "empty reactor"),
                    scenario("Selected and excluded same project, but also selected another project")
    Java
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Tue Dec 05 09:23:26 GMT 2023
    - 27.8K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

                        modules = true;
                    } else {
                        unknown = true;
                    }
                    if (selected == null) {
                        selected = type;
                    } else if (unknown) {
                        // More than one filtered value, and we don't know how to handle at least one of them.
    Java
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

                        modules = true;
                    } else {
                        unknown = true;
                    }
                    if (selected == null) {
                        selected = type;
                    } else if (unknown) {
                        // More than one filtered value, and we don't know how to handle at least one of them.
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionNode.java

                        // set the recommended version
                        ArtifactVersion selected = artifact.getSelectedVersion();
                        // MNG-2123: null is a valid response to getSelectedVersion, don't
                        // assume it won't ever be.
                        if (selected != null) {
                            artifact.selectVersion(selected.toString());
                        } else {
    Java
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/networking/v1/generated.proto

    message NetworkPolicyPeer {
      // podSelector is a label selector which selects pods. This field follows standard label
      // selector semantics; if present but empty, it selects all pods.
      //
      // If namespaceSelector is also set, then the NetworkPolicyPeer as a whole selects
      // the pods matching podSelector in the Namespaces selected by NamespaceSelector.
      // Otherwise it selects the pods matching podSelector in the policy's own namespace.
    Plain Text
    - Registered: Wed Apr 17 22:53:10 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 25.2K bytes
    - Viewed (0)
Back to top