Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 246 for retractions (0.24 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/typeparams/common.go

    // interact with generic Go code, as introduced with Go 1.18. It
    // supplements the standard library APIs. Notably, the StructuralTerms
    // API computes a minimal representation of the structural
    // restrictions on a type parameter.
    //
    // An external version of these APIs is available in the
    // golang.org/x/exp/typeparams module.
    package typeparams
    
    import (
    	"go/ast"
    	"go/token"
    	"go/types"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/plugin/plugin.go

    //
    //   - Similar crashing problems are likely to arise unless all common
    //     dependencies of the application and its plugins are built from
    //     exactly the same source code.
    //
    //   - Together, these restrictions mean that, in practice, the
    //     application and its plugins must all be built together by a
    //     single person or component of a system. In that case, it may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:46:10 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. maven-compat/src/test/java/org/apache/maven/project/inheritance/t09/ProjectInheritanceTest.java

         * we did list an exclusion on c, it was only from within the context of
         * project b.  We will pick up project c in this case because no
         * restrictions were placed on d.  This demonstrates that a, b, c, & d will
         * all be collected.
         *
         * @throws Exception
         */
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/cpumanager/policy_options.go

    	}
    
    	return nil
    }
    
    // StaticPolicyOptions holds the parsed value of the policy options, ready to be consumed internally.
    type StaticPolicyOptions struct {
    	// flag to enable extra allocation restrictions to avoid
    	// different containers to possibly end up on the same core.
    	// we consider "core" and "physical CPU" synonim here, leaning
    	// towards the terminoloy k8s hints. We acknowledge this is confusing.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package zip provides functions for creating and extracting module zip files.
    //
    // Module zip files have several restrictions listed below. These are necessary
    // to ensure that module zip files can be extracted consistently on supported
    // platforms and file systems.
    //
    // • All file paths within a zip file must start with "<module>@<version>/",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/mod/module/module.go

    //
    // The [module.Version] type is a simple Path, Version pair:
    //
    //	type Version struct {
    //		Path string
    //		Version string
    //	}
    //
    // There are no restrictions imposed directly by use of this structure,
    // but additional checking functions, most notably [Check], verify that
    // a particular path, version pair is valid.
    //
    // # Escaped Paths
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/ExecuteActionsTaskExecuterTest.groovy

            !state.failure
            state.actionable
        }
    
        def executeDoesOperateOnNewActionListInstance() {
            given:
            interaction {
                task.getActions() >> [action1]
                task.getTaskActions() >> [action1]
                task.hasTaskActions() >> true
            }
    
            when:
            executer.execute(task, state, executionContext)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/typeset.go

    	"sort"
    	"strings"
    )
    
    // ----------------------------------------------------------------------------
    // API
    
    // A _TypeSet represents the type set of an interface.
    // Because of existing language restrictions, methods can be "factored out"
    // from the terms. The actual type set is the intersection of the type set
    // implied by the methods and the type set described by the terms and the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/body-updates.md

    !!! note
        `PATCH` is less commonly used and known than `PUT`.
    
        And many teams use only `PUT`, even for partial updates.
    
        You are **free** to use them however you want, **FastAPI** doesn't impose any restrictions.
    
        But this guide shows you, more or less, how they are intended to be used.
    
    ### Using Pydantic's `exclude_unset` parameter
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/decls3.go

    	type T0 struct{
    		int
    		float32
    		f int
    	}
    	var x T0
    	_ = x.int
    	_ = x.float32
    	_ = x.f
    
    	type T1 struct{
    		T0
    	}
    	var y T1
    	_ = y.int
    	_ = y.float32
    	_ = y.f
    }
    
    // Restrictions on embedded field types.
    
    func _() {
    	type I1 interface{}
    	type I2 interface{}
    	type P1 *int
    	type P2 *int
    	type UP unsafe.Pointer
    
    	type T1 struct {
    		I1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 23:16:04 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top