Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,769 for indirectly (0.15 sec)

  1. src/go/types/unify.go

    			// Interface types are the only types where cycles can occur
    			// that are not "terminated" via named types; and such cycles
    			// can only be created via method parameter types that are
    			// anonymous interfaces (directly or indirectly) embedding
    			// the current interface. Example:
    			//
    			//    type T interface {
    			//        m() interface{T}
    			//    }
    			//
    			// If two such (differently named) interfaces are compared,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. src/log/slog/doc.go

    before passing it on to another Handler or backend.
    A Record contains a mixture of simple public fields (e.g. Time, Level, Message)
    and hidden fields that refer to state (such as attributes) indirectly. This
    means that modifying a simple copy of a Record (e.g. by calling
    [Record.Add] or [Record.AddAttrs] to add attributes)
    may have unexpected effects on the original.
    Before modifying a Record, use [Record.Clone] to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 14:35:48 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/unify.go

    			// Interface types are the only types where cycles can occur
    			// that are not "terminated" via named types; and such cycles
    			// can only be created via method parameter types that are
    			// anonymous interfaces (directly or indirectly) embedding
    			// the current interface. Example:
    			//
    			//    type T interface {
    			//        m() interface{T}
    			//    }
    			//
    			// If two such (differently named) interfaces are compared,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. licenses/github.com/hashicorp/go-multierror/LICENSE

    5.2. If You initiate litigation against any entity by asserting a patent
         infringement claim (excluding declaratory judgment actions, counter-claims,
         and cross-claims) alleging that a Contributor Version directly or
         indirectly infringes any patent, then the rights granted to You by any and
         all Contributors for the Covered Software under Section 2.1 of this License
         shall terminate.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 15.6K bytes
    - Viewed (0)
  5. licenses/github.com/hashicorp/hcl/LICENSE

    5.2. If You initiate litigation against any entity by asserting a patent
         infringement claim (excluding declaratory judgment actions, counter-claims,
         and cross-claims) alleging that a Contributor Version directly or
         indirectly infringes any patent, then the rights granted to You by any and
         all Contributors for the Covered Software under Section 2.1 of this License
         shall terminate.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 15.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modcmd/edit.go

    	}
    	if modFile.Toolchain != nil {
    		f.Toolchain = modFile.Toolchain.Name
    	}
    	for _, r := range modFile.Require {
    		f.Require = append(f.Require, requireJSON{Path: r.Mod.Path, Version: r.Mod.Version, Indirect: r.Indirect})
    	}
    	for _, x := range modFile.Exclude {
    		f.Exclude = append(f.Exclude, x.Mod)
    	}
    	for _, r := range modFile.Replace {
    		f.Replace = append(f.Replace, replaceJSON{r.Old, r.New})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. licenses/github.com/hashicorp/errwrap/LICENSE

    5.2. If You initiate litigation against any entity by asserting a patent
         infringement claim (excluding declaratory judgment actions, counter-claims,
         and cross-claims) alleging that a Contributor Version directly or
         indirectly infringes any patent, then the rights granted to You by any and
         all Contributors for the Covered Software under Section 2.1 of this License
         shall terminate.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 15.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/map.go

    //
    // A Hasher may grow without bound as new types are seen.  Even when a
    // type is deleted from the map, the Hasher never shrinks, since other
    // types in the map may reference the deleted type indirectly.
    //
    // Hashers are not thread-safe, and read-only operations such as
    // Map.Lookup require updates to the hasher, so a full Mutex lock (not a
    // read-lock) is require around all Map operations if a shared
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/dependencies/HtmlDependencyReportTaskIntegrationTest.groovy

            def undeclarableConfiguration = json.project.configurations.find { it.name == "undeclarable" }
    
            then:
            !undeclarableConfiguration
        }
    
        void "includes indirectly declarable configurations"() {
            mavenRepo.module("foo", "foo", '1.0').publish()
    
            file("build.gradle") << """
                apply plugin : 'project-report'
    
                repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  10. pkg/volume/local/local.go

    		// local volume plugin does not implement AttachableVolumePlugin interface, so set devicePath to Path in PV spec directly
    		return dm.mountLocalBlockDevice(spec, spec.PersistentVolume.Spec.Local.Path, deviceMountPath)
    	case hostutil.FileTypeDirectory:
    		// if the given local volume path is of already filesystem directory, return directly
    		return nil
    	default:
    		return fmt.Errorf("only directory and block device are supported")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 22.2K bytes
    - Viewed (0)
Back to top