Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,828 for okdown (0.11 sec)

  1. subprojects/core-api/src/main/java/org/gradle/internal/metaobject/MethodAccess.java

    /**
     * Provides dynamic access to methods of some object.
     */
    public interface MethodAccess {
        /**
         * Returns true when this object is known to have a method with the given name that accepts the given arguments.
         *
         * <p>Note that not every method is known. Some methods may require an attempt invoke it in order for them to be discovered.</p>
         */
        boolean hasMethod(String name, @Nullable Object... arguments);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 10:01:06 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/podresources/constants.go

    	// DefaultQPS is determined by empirically reviewing known consumers of the API.
    	// It's at least unlikely that there is a legitimate need to query podresources
    	// more than 100 times per second, the other subsystems are not guaranteed to react
    	// so fast in the first place.
    	DefaultQPS = 100
    
    	// DefaultBurstTokens is determined by empirically reviewing known consumers of the API.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 07:22:23 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. src/internal/pkgbits/sync.go

    // written to export data to ensure the reader and writer stay
    // synchronized.
    type SyncMarker int
    
    //go:generate stringer -type=SyncMarker -trimprefix=Sync
    
    const (
    	_ SyncMarker = iota
    
    	// Public markers (known to go/types importers).
    
    	// Low-level coding markers.
    	SyncEOF
    	SyncBool
    	SyncInt64
    	SyncUint64
    	SyncString
    	SyncValue
    	SyncVal
    	SyncRelocs
    	SyncReloc
    	SyncUseReloc
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 04 17:12:28 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  4. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/plugins/internal/JavaConfigurationVariantMapping.java

    import javax.annotation.Nullable;
    import java.util.Set;
    
    public class JavaConfigurationVariantMapping implements Action<ConfigurationVariantDetails> {
    
        /**
         * A list of known artifact types which are known to prevent from
         * publication.
         */
        public static final Set<String> UNPUBLISHABLE_VARIANT_ARTIFACTS = ImmutableSet.of(
            ArtifactTypeDefinition.JVM_CLASS_DIRECTORY,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:37:13 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/StatusEvent.java

         * @return The amount of performed work
         */
        long getProgress();
    
        /**
         * The total amount of work that the build operation is in the progress of performing, or -1 if not known.
         *
         * @return The total amount of work, or -1 if not known.
         */
        long getTotal();
    
        /**
         * The measure used to express the amount of work.
         *
         * @return The measure used to express the amount of work.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. src/internal/godebugs/table.go

    // license that can be found in the LICENSE file.
    
    // Package godebugs provides a table of known GODEBUG settings,
    // for use by a variety of other packages, including internal/godebug,
    // runtime, runtime/metrics, and cmd/go/internal/load.
    package godebugs
    
    // An Info describes a single known GODEBUG setting.
    type Info struct {
    	Name    string // name of the setting ("panicnil")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/software_architecture.puml

      [domain-model] <-right- [state]
    }
    
    [server-application] -down-> [user-feature]
    [server-application] -down-> [admin-feature]
    [android-app] -down-> [user-feature]
    
    [user-feature] -down-> [domain-model]
    [user-feature] -down-> [state]
    
    [admin-feature] -down-> [domain-model]
    [admin-feature] -down-> [state]
    
    [server-application] -down-> [SpringBoot]
    [android-app] -down-> [Android]
    
    folder {
       [build-logic]
    }
    folder {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 886 bytes
    - Viewed (0)
  8. src/html/template/content.go

    // license that can be found in the LICENSE file.
    
    package template
    
    import (
    	"fmt"
    	"reflect"
    )
    
    // Strings of content from a trusted source.
    type (
    	// CSS encapsulates known safe content that matches any of:
    	//   1. The CSS3 stylesheet production, such as `p { color: purple }`.
    	//   2. The CSS3 rule production, such as `a[href=~"https:"].foo#bar`.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:30:25 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfr/README.md

    [examples](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/compiler/mlir/tfr/examples)
    directory.
    
    ### Just-In-Time (JIT) mode
    (TODO)
    
    ## Known Limitations
    
    * `while` statement
    * condition of `if` statement couldn't be a tensor
    
    ## RFC
    
    This project is an alternative implementation of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 29 18:32:13 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  10. pilot/pkg/networking/plugin/authn/util.go

    		tds = append(tds, cacert.GetTrustDomains()...)
    	}
    	return dedupTrustDomains(tds)
    }
    
    func dedupTrustDomains(tds []string) []string {
    	known := sets.New[string]()
    	deduped := make([]string, 0, len(tds))
    
    	for _, td := range tds {
    		if td != "" && !known.InsertContains(td) {
    			deduped = append(deduped, td)
    		}
    	}
    	return deduped
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 16:11:07 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top