Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for Several (0.13 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

            when:
            fails ':a:checkDebug'
    
            then:
            failure.assertHasCause """The consumer was configured to find attribute 'buildType' with value 'debug', attribute 'flavor' with value 'free'. There are several available matching variants of project :b
    The only attribute distinguishing these variants is 'extra'. Add this attribute to the consumer's configuration to resolve the ambiguity:
      - Value: 'extra 2' selects variant: 'bar'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    2. It is hierarchical, providing _fine-grained control_ within the overall copy specification.
    
    [[sub:sharing_copy_specs]]
    ==== 1. Sharing copy specs
    Consider a build with several tasks that copy a project's static website resources or add them to an archive.
    One task might copy the resources to a folder for a local HTTP server, and another might package them into a distribution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  3. src/runtime/mprof.go

    		}
    	}
    
    	saveBlockEventStack(cycles, rate, mp.profStack[:nstk], which)
    	releasem(mp)
    }
    
    // lockTimer assists with profiling contention on runtime-internal locks.
    //
    // There are several steps between the time that an M experiences contention and
    // when that contention may be added to the profile. This comes from our
    // constraints: We need to keep the critical section of each lock small,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    Community plugins also contribute containers, like the `android.buildTypes` container contributed by the Android Plugin.
    
    The Kotlin DSL provides several ways for build authors to interact with containers.
    We look at each of those ways next, using the `tasks` container as an example.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. fastapi/param_functions.py

                By default, after a dependency is called the first time in a request, if
                the dependency is declared again for the rest of the request (for example
                if the dependency is needed by several dependencies), the value will be
                re-used for the rest of the request.
    
                Set `use_cache` to `False` to disable this behavior and ensure the
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  6. pkg/proxy/iptables/proxier.go

    	conntrackTCPLiberal bool
    
    	// nodePortAddresses selects the interfaces where nodePort works.
    	nodePortAddresses *proxyutil.NodePortAddresses
    	// networkInterfacer defines an interface for several net library functions.
    	// Inject for test purpose.
    	networkInterfacer proxyutil.NetworkInterfacer
    
    	logger klog.Logger
    
    	// nfAcctCounters can be used to determine if a counter exist in the nfacct subsystem.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  7. tensorflow/BUILD

        }),
    )
    
    # -------------------------------------------
    # New rules should be added above this target.
    # -------------------------------------------
    
    # TensorFlow uses several libraries that may also be used by applications
    # linking against the C and C++ APIs (such as libjpeg).  When we create
    # the shared library, only export the core TF API functions to avoid
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  8. src/time/time_test.go

    			t.Errorf("got %d/%d; expected %d/1 for Jan 04", y, w, year)
    		}
    	}
    }
    
    type YearDayTest struct {
    	year, month, day int
    	yday             int
    }
    
    // Test YearDay in several different scenarios
    // and corner cases
    var yearDayTests = []YearDayTest{
    	// Non-leap-year tests
    	{2007, 1, 1, 1},
    	{2007, 1, 15, 15},
    	{2007, 2, 1, 32},
    	{2007, 2, 15, 46},
    	{2007, 3, 1, 60},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                    if (targetComponent == component) {
                        // if the same component depends on itself: do not attempt to cleanup the same thing several times
                        continue;
                    }
                    if (targetComponent != null && targetComponent.getModule().isChangingSelection()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/pv_controller.go

    			// Add In-Tree protection finalizer here only when the reclaim policy is `Delete`
    			volume.SetFinalizers([]string{storagehelpers.PVDeletionInTreeProtectionFinalizer})
    		}
    	}
    
    	// Try to create the PV object several times
    	for i := 0; i < ctrl.createProvisionedPVRetryCount; i++ {
    		logger.V(4).Info("provisionClaimOperation: trying to save volume", "PVC", klog.KObj(claim), "volumeName", volume.Name)
    		var newVol *v1.PersistentVolume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
Back to top