Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 544 for darkred (1.19 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/SelectorState.java

         * Marks a selector for reuse,
         * indicating it could be used again for resolution
         *
         * @return {@code true} if that selector has been marked for reuse before, {@code false} otherwise
         */
        boolean markForReuse() {
            if (!resolved) {
                // Selector was marked for deferred selection - let's not trigger selection now
                return true;
            }
            this.reusable = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

      }
    
      /**
       * Verifies that {@code method} produces a {@link NullPointerException} or {@link
       * UnsupportedOperationException} when the parameter in position {@code paramIndex} is null. If
       * this parameter is marked nullable, this method does nothing.
       *
       * @param instance the instance to invoke {@code method} on, or null if {@code method} is static
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/testing/NullPointerTester.java

      }
    
      /**
       * Verifies that {@code method} produces a {@link NullPointerException} or {@link
       * UnsupportedOperationException} when the parameter in position {@code paramIndex} is null. If
       * this parameter is marked nullable, this method does nothing.
       *
       * @param instance the instance to invoke {@code method} on, or null if {@code method} is static
       */
      public void testMethodParameter(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. cmd/dependencyverifier/dependencyverifier.go

    			needUpdate = true
    		}
    		if len(unwantedReferences) > 0 {
    			log.Printf("Unwanted module %q marked in %s is referenced by new dependants:", expectedRef, dependenciesJSONPath)
    			for _, reference := range unwantedReferences {
    				log.Printf("   %s", reference)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 07 01:48:30 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  5. src/crypto/x509/verify.go

    		}
    	}
    
    	// KeyUsage status flags are ignored. From Engineering Security, Peter
    	// Gutmann: A European government CA marked its signing certificates as
    	// being valid for encryption only, but no-one noticed. Another
    	// European CA marked its signature keys as not being valid for
    	// signatures. A different CA marked its own trusted root certificate
    	// as being invalid for certificate signing. Another national CA
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/deadcode.go

    //     (or MethodByName)
    //
    // The first case is handled by the flood fill, a directly called method
    // is marked as reachable.
    //
    // The second case is handled by decomposing all reachable interface
    // types into method signatures. Each encountered method is compared
    // against the interface method signatures, if it matches it is marked
    // as reachable. This is extremely conservative, but easy and correct.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    			vaAttachStatus:    false,
    			expected_attaches: map[string][]string{},
    			expected_detaches: map[string][]string{"mynode-1": {"vol1"}},
    		},
    		{ // pod is scheduled, volume is migrated, attach status:false, verify volume is marked as attached
    			testName:               "Scheduled Pod with migrated PV",
    			volName:                "vol1",
    			podNodeName:            "mynode-1",
    			pvName:                 "pv1",
    			vaName:                 "va1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/stdlib_test.go

    				continue // ignore this file
    			case "errorcheck":
    				expectErrors = true
    				for _, arg := range fields[1:] {
    					if arg == "-0" || arg == "-+" || arg == "-std" {
    						// Marked explicitly as not expecting errors (-0),
    						// or marked as compiling runtime/stdlib, which is only done
    						// to trigger runtime/stdlib-only error output.
    						// In both cases, the code should typecheck.
    						expectErrors = false
    						break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/branchelim.go

    		v.Block = dom
    	}
    
    	// findBlockPos determines if b contains a stmt-marked value
    	// that has the same line number as the Pos for b itself.
    	// (i.e. is the position on b actually redundant?)
    	findBlockPos := func(b *Block) bool {
    		pos := b.Pos
    		for _, v := range b.Values {
    			// See if there is a stmt-marked value already that matches simple.Pos (and perhaps post.Pos)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 30 17:46:51 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  10. pkg/apis/batch/types.go

    	// Specifies the action taken on a pod failure when the requirements are satisfied.
    	// Possible values are:
    	//
    	// - FailJob: indicates that the pod's job is marked as Failed and all
    	//   running pods are terminated.
    	// - FailIndex: indicates that the pod's index is marked as Failed and will
    	//   not be restarted.
    	//   This value is alpha-level. It can be used when the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top