Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,769 for indirectly (0.15 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #if GTEST_HAS_PTHREAD
    
    // Sleeps for (roughly) n milli-seconds.  This function is only for
    // testing Google Test's own constructs.  Don't use it in user tests,
    // either directly or indirectly.
    inline void SleepMilliseconds(int n) {
      const timespec time = {
        0,                  // 0 seconds.
        n * 1000L * 1000L,  // And n ms.
      };
      nanosleep(&time, NULL);
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/FinalizerTaskIntegrationTest.groovy

            }
            2.times {
                fails "thing", "-Pfinalizer.broken"
                result.assertTasksExecutedInOrder ":thing", ":finalizerDep", ":finalizer"
            }
        }
    
        def "finalizer can indirectly depend on the entry point finalized by it"() {
            given:
            buildFile '''
                task finalizer(type: BreakingTask) {
                    dependsOn 'finalizerDep'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  3. src/go/types/predicates.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: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. licenses/github.com/hashicorp/go-version/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: Thu Jun 06 15:59:40 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. licenses/github.com/hashicorp/golang-lru/v2/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: Fri Feb 03 20:21:32 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #if GTEST_HAS_PTHREAD
    
    // Sleeps for (roughly) n milli-seconds.  This function is only for
    // testing Google Test's own constructs.  Don't use it in user tests,
    // either directly or indirectly.
    inline void SleepMilliseconds(int n) {
      const timespec time = {
        0,                  // 0 seconds.
        n * 1000L * 1000L,  // And n ms.
      };
      nanosleep(&time, NULL);
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    === Task ordering with configuration avoidance
    
    Calling ordering methods will not cause task creation by itself.
    All these methods do is declare relationships.
    
    NOTE: The existence of these relationships might indirectly cause task creation in later stages of the build process.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  8. pkg/volume/iscsi/iscsi.go

    // get iSCSI volume info: readOnly and fstype
    func getISCSIVolumeInfo(spec *volume.Spec) (bool, string, error) {
    	// for volume source, readonly is in volume spec
    	// for PV, readonly is in PV spec. PV gets the ReadOnly flag indirectly through the PVC source
    	if spec.Volume != nil && spec.Volume.ISCSI != nil {
    		return spec.Volume.ISCSI.ReadOnly, spec.Volume.ISCSI.FSType, nil
    	} else if spec.PersistentVolume != nil &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/predicates.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: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ir/func.go

    	funcNeverReturns             // function never returns (in most cases calls panic(), os.Exit(), or equivalent)
    	funcOpenCodedDeferDisallowed // can't do open-coded defers
    	funcClosureResultsLost       // closure is called indirectly and we lost track of its results; used by escape analysis
    	funcPackageInit              // compiler emitted .init func for package
    )
    
    type SymAndPos struct {
    	Sym *obj.LSym // LSym of callee
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top