Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for checkable (0.2 sec)

  1. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/kotlin/build.gradle.kts

    defaultTasks("run")
    
    // tag::run[]
    tasks.register("run") {
        dependsOn(gradle.includedBuild("my-app").task(":app:run"))
    }
    // end::run[]
    
    tasks.register("checkAll") {
        dependsOn(gradle.includedBuild("my-app").task(":app:check"))
        dependsOn(gradle.includedBuild("my-utils").task(":number-utils:check"))
        dependsOn(gradle.includedBuild("my-utils").task(":string-utils:check"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 387 bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/modular_filesystem_registration.cc

    //
    // If the numbers don't match, plugin cannot be loaded.
    //
    // Uses the simpler `CheckABI(int, int, StringPiece)`.
    static Status ValidateABI(const TF_FilesystemPluginOps* ops) {
      TF_RETURN_IF_ERROR(
          CheckABI(ops->filesystem_ops_abi, TF_FILESYSTEM_OPS_ABI, "filesystem"));
    
      if (ops->random_access_file_ops != nullptr)
        TF_RETURN_IF_ERROR(CheckABI(ops->random_access_file_ops_abi,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 07 22:08:43 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/groovy/build.gradle

    defaultTasks 'run'
    
    // tag::run[]
    tasks.register('run') {
        dependsOn gradle.includedBuild('my-app').task(':app:run')
    }
    // end::run[]
    
    task checkAll {
        dependsOn gradle.includedBuild('my-app').task(':app:check')
        dependsOn gradle.includedBuild('my-utils').task(':number-utils:check')
        dependsOn gradle.includedBuild('my-utils').task(':string-utils:check')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 369 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/func_test.go

    				if !checkVal(fv.Args[i], gv.Args[i]) {
    					return false
    				}
    			}
    		}
    		return valcor[fv] == gv && valcor[gv] == fv
    	}
    	blkcor := make(map[*Block]*Block)
    	var checkBlk func(fb, gb *Block) bool
    	checkBlk = func(fb, gb *Block) bool {
    		if blkcor[fb] == nil && blkcor[gb] == nil {
    			blkcor[fb] = gb
    			blkcor[gb] = fb
    			// ignore ids
    			if fb.Kind != gb.Kind {
    				return false
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:01:04 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/SampleOutputNormalizer.groovy

            String escapedFilePath = Pattern.quote(executionMetadata.tempSampleProjectDir.canonicalPath)
            commandOutput = commandOutput.replaceAll(escapedFilePath, NORMALIZED_SAMPLES_PATH)
    
            // Replace sample project dir clickable file:/// URLs
            String escapedFileUrl = Pattern.quote(new ConsoleRenderer().asClickableFileUrl(executionMetadata.tempSampleProjectDir))
            commandOutput = commandOutput.replaceAll(escapedFileUrl, NORMALIZED_SAMPLES_FILE_URL)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. pkg/kubeapiserver/authorizer/reload.go

    	filesystem.WatchUntil(
    		ctx,
    		r.reloadInterval,
    		r.initialConfig.ReloadFile,
    		func() {
    			r.checkFile(ctx)
    		},
    		func(err error) {
    			klog.ErrorS(err, "watching authorization config file")
    		},
    	)
    }
    
    func (r *reloadableAuthorizerResolver) checkFile(ctx context.Context) {
    	r.lastLoadedLock.Lock()
    	defer r.lastLoadedLock.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceGraph.js

                        }
                },
                grid: {hoverable: true, clickable: true, markings: background},
                xaxis: xaxis,
                yaxis: {min: determineMinY(data, unit)}, selection: {mode: 'xy'}
            };
            const chart = $.plot('#' + chartId, data, options);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. cmd/xl-storage_unix_test.go

    		t.Fatalf("Create a file `test` failed with %s expected to pass.", err)
    	}
    
    	// CheckFile - stat the file.
    	if _, err := disk.StatInfoFile(context.Background(), testCase.volName, "hello-world.txt/"+xlStorageFormatFile, false); err != nil {
    		t.Fatalf("Stat failed with %s expected to pass.", err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 25 19:37:26 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  9. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/CodeNarcInvoker.groovy

                            // The output from Ant is written at INFO level
                            setLifecycleLogLevel(ant, 'INFO')
                            // Prefer to use the IDE based formatter because this produces a useful/clickable link to the violation on the console
                            report(type: 'ide') {
                                option(name: 'writeToStandardOut', value: true)
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 14:00:06 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. src/testing/fstest/testfs.go

    		return strings.Compare(fa[1]+" "+fb[0], fb[1]+" "+fa[0])
    	})
    
    	t.errorf("%s: diff %s:\n\t%s", dir, desc, strings.Join(diffs, "\n\t"))
    }
    
    // checkFile checks that basic file reading works correctly.
    func (t *fsTester) checkFile(file string) {
    	t.files = append(t.files, file)
    
    	// Read entire file.
    	f, err := t.fsys.Open(file)
    	if err != nil {
    		t.errorf("%s: Open: %w", file, err)
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top