Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 531 for easy (0.14 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/ModelContainer.java

        /**
         * Runs the given function to calculate a value from the public mutable model. Applies best effort synchronization to prevent concurrent access to a particular project from multiple threads.
         * However, it is currently easy for state to leak from one project to another so this is not a strong guarantee.
         *
         * <p>It is usually a better option to use {@link #newCalculatedValue(Object)} instead of this method.</p>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/README.md

    Package markdown is a Commonmark-compliant Markdown parser and
    HTML generator. It does not have many bells and whistles, but it does
    expose the parsed syntax in an easy-to-use form.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 201 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/apitesting/codec.go

    		}
    	}
    }
    
    // InstallOrDieFunc mirrors install functions that require success
    type InstallOrDieFunc func(scheme *runtime.Scheme)
    
    // SchemeForInstallOrDie builds a simple test scheme and codecfactory pair for easy unit testing from higher level install methods
    func SchemeForInstallOrDie(installFns ...InstallOrDieFunc) (*runtime.Scheme, runtimeserializer.CodecFactory) {
    	scheme := runtime.NewScheme()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 01 19:31:12 UTC 2018
    - 3.9K bytes
    - Viewed (0)
  4. fastapi/__init__.py

    """FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
    
    __version__ = "0.111.0"
    
    from starlette import status as status
    
    from .applications import FastAPI as FastAPI
    from .background import BackgroundTasks as BackgroundTasks
    from .datastructures import UploadFile as UploadFile
    from .exceptions import HTTPException as HTTPException
    from .exceptions import WebSocketException as WebSocketException
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:50:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. test/fixedbugs/issue15747b.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 15747: If an ODCL is dropped, for example when inlining,
    // then it's easy to end up not initializing the '&x' pseudo-variable
    // to point to an actual allocation. The liveness analysis will detect
    // this and abort the computation, so this test just checks that the
    // compilation succeeds.
    
    package p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 02:39:16 UTC 2017
    - 539 bytes
    - Viewed (0)
  6. docs/en/docs/index.md

    * **Intuitive**: Great editor support. <abbr title="also known as auto-complete, autocompletion, IntelliSense">Completion</abbr> everywhere. Less time debugging.
    * **Easy**: Designed to be easy to use and learn. Less time reading docs.
    * **Short**: Minimize code duplication. Multiple features from each parameter declaration. Fewer bugs.
    * **Robust**: Get production-ready code. With automatic interactive documentation.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. src/internal/poll/error_linux_test.go

    import (
    	"errors"
    	"internal/poll"
    	"os"
    	"syscall"
    )
    
    func badStateFile() (*os.File, error) {
    	if os.Getuid() != 0 {
    		return nil, errors.New("must be root")
    	}
    	// Using OpenFile for a device file is an easy way to make a
    	// file attached to the runtime-integrated network poller and
    	// configured in halfway.
    	return os.OpenFile("/dev/net/tun", os.O_RDWR, 0)
    }
    
    func isBadStateFileError(err error) (string, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 08:53:02 UTC 2019
    - 748 bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/term/README.md

    this repository, see https://golang.org/doc/contribute.html.
    
    The main issue tracker for the term repository is located at
    https://github.com/golang/go/issues. Prefix your issue with "x/term:" in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 727 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/conversion/doc.go

    // of the same object. You may write functions which implement conversion logic,
    // but for the fields which did not change, copying is automated. This makes it
    // easy to modify the structures you use in memory without affecting the format
    // you store on disk or respond to in your external API calls.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  10. test/typeparam/dedup.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Note: this doesn't really test the deduplication of
    // instantiations. It just provides an easy mechanism to build a
    // binary that you can then check with objdump manually to make sure
    // deduplication is happening. TODO: automate this somehow?
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 437 bytes
    - Viewed (0)
Back to top