Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for reflectively (0.19 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    +
    You can also enable this behavior by using the `--fail-fast` command line option, or disable it respectively with `--no-fail-fast`.
    
    `testLogging` — default: _not set_::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Something else to consider is what type of thing a file path refers to:
    
    * A file — the file is copied as is
    * A directory — this is effectively treated as a file tree: everything in it, including subdirectories, is copied. However, the directory itself is not included in the copy.
    * A non-existent file — the path is ignored
    
    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. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    cannot automatically discover _detached configurations_, which are basically dependency graphs resolved as an internal implementation detail of the execution of a task: they are not, in particular, declared as an input of the task because they effectively depend on the configuration of the task at execution time.
    
    A good way to start is just to use the simplest task, `help`, which will discover as much as possible, and if subsequent builds fail with a verification error, you can re-execute...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. docs/bucket/notifications/README.md

    ```
    
    MinIO supports any MQTT server that supports MQTT 3.1 or 3.1.1 and can connect to them over TCP, TLS, or a Websocket connection using `tcp://`, `tls://`, or `ws://` respectively as the scheme for the broker url. See the [Go Client](http://www.eclipse.org/paho/clients/golang/) documentation for more information.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

    		if err == nil {
    			t.Errorf("%v: expected %v", tc.name, tc.expectedError)
    			continue
    		}
    		// this only works when status errors contain the expect kind and version, so this effectively tests serializations too
    		if !strings.Contains(err.Error(), tc.expectedError) {
    			t.Errorf("%v: expected %v, got %v", tc.name, tc.expectedError, err)
    			continue
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    // RunOptionalTestWatchDispatchBookmarkEvents tests whether bookmark events are sent.
    // This feature is currently implemented in watch cache layer, so this is optional.
    //
    // TODO(#109831): ProgressNotify feature is effectively implementing the same
    //
    //	functionality, so we should refactor this functionality to share the same input.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            int incomingEdgeCount = incomingEdges.size();
            if (sameIncomingEdgesAsPreviousPass(incomingEdgeCount)) {
                // if we reach this point it means the node selection was restarted, but
                // effectively it has the same incoming edges as before, so we can return
                // the result we computed last time
                return cachedModuleResolutionFilter;
            }
            if (incomingEdgeCount == 1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    The Gradle build model makes heavy use of container objects (or just "containers").
    For example, both `configurations` and `tasks` are container objects that contain `Configuration` and `Task` objects respectively.
    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.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ```
    WARNING: An illegal reflective access operation has occurred
    WARNING: Illegal reflective access by com.google.inject.internal.cglib.core.ReflectUtils$2 (file:/.../testng-5.12.1.jar) to <method>
    WARNING: Please consider reporting this to the maintainers of com.google.inject.internal.cglib.core.ReflectUtils$2
    WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  10. src/runtime/mgcpacer.go

    	// this will be 0.05 to make up the missing 5%.
    	//
    	// If this is zero, no fractional workers are needed.
    	fractionalUtilizationGoal float64
    
    	// These memory stats are effectively duplicates of fields from
    	// memstats.heapStats but are updated atomically or with the world
    	// stopped and don't provide the same consistency guarantees.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top