Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 486 for gold (0.05 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/plan/MissingTaskDependencyDetector.java

                return task.getOnlyIf().isSatisfiedBy(task);
            }
            return false;
        }
    
        // In a perfect world, the consumer should depend on the producer.
        // Though we still don't have a good solution for the code linter and formatter use-case.
        // And for that case, there will be a cyclic dependency between the analyze and the format task if we only take output/input locations into account.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginToolchainsIntegrationTest.groovy

                        }
                    }
                }
            """
    
            then:
            succeeds("checkstyleMain")
        }
    
        def "analyze good code with the toolchain JDK"() {
            goodCode()
            def jdk = setupExecutorForToolchains()
            writeBuildFileWithToolchainsFromJavaPlugin(jdk)
            writeConfigFileWithTypeName()
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 16 22:34:07 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. src/runtime/race_ppc64le.s

    racecallatomic_data:
    	MOVD	runtimeĀ·racedatastart(SB), R9
    	CMP	R7, R9
    	BLT	racecallatomic_ignore
    	MOVD	runtimeĀ·racedataend(SB), R9
    	CMP	R7, R9
    	BGE	racecallatomic_ignore
    racecallatomic_ok:
    	// Addr is within the good range, call the atomic function.
    	MOVD    runtimeĀ·tls_g(SB), R10
    	MOVD    0(R10), g
    	MOVD    g_racectx(g), R3        // goroutine racectx aka *ThreadState
    	MOVD	R8, R5			// pc is the function called
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. src/runtime/race_arm64.s

    	CMP	R10, R3
    	BGE	racecallatomic_ignore
    racecallatomic_ok:
    	// Addr is within the good range, call the atomic function.
    	load_g
    	MOVD	g_racectx(g), R0	// goroutine context
    	MOVD	16(RSP), R1	// caller pc
    	MOVD	R9, R2	// pc
    	ADD	$40, RSP, R3
    	JMP	racecall<>(SB)	// does not return
    racecallatomic_ignore:
    	// Addr is outside the good range.
    	// Call __tsan_go_ignore_sync_begin to ignore synchronization during the atomic op.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    Automated tests become an invaluable safety net when upgrading the plugin to a new Gradle version or enhancing/refactoring the code.
    
    === Organizing test source code
    
    We recommend implementing a good distribution of unit, integration, and functional tests to cover the most important use cases.
    Separating the source code for each test type automatically results in a project that is more maintainable and manageable.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/post_quantize.cc

            return success();
          }
    
          op.replaceAllUsesWith(q.getInput());
          return success();
        }
        return failure();
      }
    };
    
    // Fold the constant quantized Transpose ops.
    struct FoldTransposeOp : public OpRewritePattern<TransposeOp> {
      explicit FoldTransposeOp(MLIRContext* context)
          : OpRewritePattern<TransposeOp>(context, 1) {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/resource/v1alpha2/generated.proto

      // Shareable determines whether the resource supports more
      // than one consumer at a time.
      // +optional
      optional bool shareable = 3;
    }
    
    // PodSchedulingContext objects hold information that is needed to schedule
    // a Pod with ResourceClaims that use "WaitForFirstConsumer" allocation
    // mode.
    //
    // This is an alpha type and requires enabling the DynamicResourceAllocation
    // feature gate.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. pkg/credentialprovider/keyring_test.go

    			matchExpected: true,
    		},
    		{
    			globURL:       "prefix.kubernetes.*",
    			targetURL:     "prefix.kubernetes.io",
    			matchExpected: true,
    		},
    		{
    			globURL:       "*-good.kubernetes.io",
    			targetURL:     "prefix-good.kubernetes.io",
    			matchExpected: true,
    		},
    		// match with path components
    		{
    			globURL:       "*.kubernetes.io/blah",
    			targetURL:     "prefix.kubernetes.io/blah",
    			matchExpected: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 15 10:47:22 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonClientsManager.java

                stopAllWorkers();
                listenerManager.removeListener(stopSessionScopeWorkers);
                memoryManager.removeMemoryHolder(workerDaemonExpiration);
            }
            // Do not hold lock while removing listener, as the listener may still be receiving events on another thread and will need to acquire the lock to handle these events
            loggingManager.removeOutputEventListener(logLevelChangeEventListener);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/gen_test.go

    	}
    	return subject, matchingUIs, skippingUIs
    }
    
    func genUser(rng *rand.Rand, pfx string) (*flowcontrol.UserSubject, []user.Info, []user.Info) {
    	mui := &user.DefaultInfo{
    		Name:   pfx + "-u",
    		UID:    "good-id",
    		Groups: []string{pfx + "-g1", mg(rng), pfx + "-g2"},
    		Extra:  noextra}
    	skips := []user.Info{&user.DefaultInfo{
    		Name:   mui.Name + "x",
    		UID:    mui.UID,
    		Groups: mui.Groups,
    		Extra:  mui.Extra}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
Back to top