Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 213 for darkred (1.39 sec)

  1. src/cmd/go/testdata/script/mod_list_direct_work.txt

    # on rsc.io/sampler, and an indirect requirement on golang.org/x/text
    # through rsc.io/isampler. Module example.com/b has a direct
    # requirement on example.com/c which is incorrectly marked as indirect
    # in module example.com/b's go.mod file.
    
    # Check that go list -m processes the indirect annotations in the
    # go.mod file.
    go list -f '{{.Path}} {{.Indirect}}' -m all
    stdout 'example.com/a false'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocIntegrationTest.groovy

            run "javadoc"
            then:
            executedAndNotSkipped(":javadoc")
    
            when: "running the task the second time after adding a custom option, it is executed and succeeds and NOT marked UP-TO-DATE"
            buildFile.text = """
                task javadoc(type: Javadoc) {
                    destinationDir = file("build/javadoc")
                    source "src/main/java"
                    options {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/nowb.go

    	// funcs records the back-edges of the BFS call graph walk. It
    	// maps from the ODCLFUNC of each function that must not have
    	// write barriers to the call that inhibits them. Functions
    	// that are directly marked go:nowritebarrierrec are in this
    	// map with a zero-valued nowritebarrierrecCall. This also
    	// acts as the set of marks for the BFS of the call graph.
    	funcs := make(map[*ir.Func]nowritebarrierrecCall)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 17:29:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. guava-testlib/README.md

    -   [guava-discuss: For open-ended questions and discussion](https://groups.google.com/group/guava-discuss)
    
    ## IMPORTANT WARNINGS
    
    1. APIs marked with the `@Beta` annotation at the class or method level
    are subject to change. They can be modified in any way, or even
    removed, at any time. If your code is a library itself (i.e. it is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/reconciler/reconstruct_test.go

    					return fmt.Errorf("expected 1 uncertain volume in asw got %d", len(volumes))
    				}
    				// The volume should be marked as reconstructed in ASW
    				if reconstructed := rcInstance.actualStateOfWorld.IsVolumeReconstructed("fake-plugin/pvc-abcdef", "pod1"); !reconstructed {
    					t.Errorf("expected volume to be marked as reconstructed, got %v", reconstructed)
    				}
    				return nil
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncompatibleTasksIntegrationTest.groovy

            result.assertTasksExecuted(":declared")
            assertStateStoredAndDiscardedForDeclaredTask(9)
        }
    
        def "incompatible task problems are not subtracted from max-problems but problems from tasks that are not marked incompatible are"() {
            given:
            addTasksWithProblems()
    
            when:
            configurationCacheFails "declared", "notDeclared", "$MAX_PROBLEMS_SYS_PROP=2", WARN_PROBLEMS_CLI_OPT
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_host_send_device_context.h

    // used to transfer from host->device using Rendezvous. It transfers the
    // content of `device_memory_base` with `shape` using `stream`. Only
    // `CopyCPUTensorToDevice` method is implemented. The `done_event` is marked as
    // Concrete once transfer is completed.
    //
    // Example usage:
    //
    //  Device device;
    //  stream_executor::Stream stream(executor);
    //  Tensor cpu_tensor(host_allocator, DT_FLOAT, TensorShape({2, 2}));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/scheduling/v1/types.go

    	// globalDefault specifies whether this PriorityClass should be considered as
    	// the default priority for pods that do not have any priority class.
    	// Only one PriorityClass can be marked as `globalDefault`. However, if more than
    	// one PriorityClasses exists with their `globalDefault` field set to true,
    	// the smallest value of such global default PriorityClasses will be used as the default priority.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeInfoProvider.kt

        /** Returns true if the type is explicitly marked as nullable. This means it's safe to assign `null` to a variable with this type. */
        public val KaType.isMarkedNullable: Boolean get() = withValidityAssertion { this.nullability == KaTypeNullability.NULLABLE }
    
        /** Returns true if the type is a platform flexible type and may or may not be marked nullable. */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/reconciler/reconstruct.go

    				klog.ErrorS(err, "Could not add pod to volume information to actual state of world", "pod", klog.KObj(volume.pod))
    				continue
    			}
    			seLinuxMountContext = volume.seLinuxMountContext
    			klog.V(2).InfoS("Volume is marked as uncertain and added into the actual state", "pod", klog.KObj(volume.pod), "podName", volume.podName, "volumeName", volume.volumeName, "seLinuxMountContext", volume.seLinuxMountContext)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top