Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 288 for comdats (0.2 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/control_flow_duplicate_v1.py

    # ==============================================================================
    
    # RUN: %p/control_flow_duplicate_v1 | FileCheck %s
    
    # pylint: disable=missing-docstring,line-too-long
    import tensorflow.compat.v1 as tf
    from tensorflow.compiler.mlir.tensorflow.tests.tf_saved_model import common_v1
    
    # Tests handling dupliate functions after V1 control flow is functionalized.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 2K bytes
    - Viewed (0)
  2. pkg/wasm/imagefetcher.go

    			multierror.Append(err,
    				fmt.Errorf("could not parse as compat variant: %v", errCompat),
    				fmt.Errorf("could not parse as oci variant: %v", errOCI),
    			),
    		)
    	}
    	return
    }
    
    // extractDockerImage extracts the Wasm binary from the
    // *compat* variant Wasm image with the standard Docker media type: application/vnd.docker.image.rootfs.diff.tar.gzip.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 10 05:44:51 UTC 2023
    - 12K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestDataGenerator.java

            private String date;
            private List<String> commits;
    
            private ExecutionLabel(PerformanceTestExecution execution) {
                this.id = execution.getExecutionId();
                this.branch = execution.getVcsBranch();
                this.date = FormatSupport.date(new Date(execution.getStartTime()));
                this.commits = execution.getVcsCommits();
            }
    
            public String getId() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/control_flow_upgrade_legacy_v1.py

    # ==============================================================================
    
    # RUN: %p/control_flow_upgrade_legacy_v1 | FileCheck %s
    
    # pylint: disable=missing-docstring,line-too-long
    import tensorflow.compat.v1 as tf
    from tensorflow.compiler.mlir.tensorflow.tests.tf_saved_model import common_v1
    from tensorflow.python.ops import control_flow_ops
    
    # Tests V1 control flow is functionalized.
    
    # CHECK-NOT: tf_executor.Switch
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 02:29:35 UTC 2022
    - 2K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/AbstractWritableResultsStore.groovy

                        List<String> channels = ['commits', 'experiments'].stream()
                            .collect { channel -> "${channel}${os.channelSuffix}-master".toString() }
                        statement.setString(++idx, channels.get(0))
                        statement.setString(++idx, channels.get(1))
                        statement.setString(++idx, "commits${os.channelSuffix}-gh-readonly-queue/master/%")
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/etcd3/compact.go

    			return
    		}
    	}
    	for _, ep := range client.Endpoints() {
    		endpointsMap[ep] = struct{}{}
    	}
    
    	if compactInterval != 0 {
    		go compactor(ctx, client, compactInterval)
    	}
    }
    
    // compactor periodically compacts historical versions of keys in etcd.
    // It will compact keys with versions older than given interval.
    // In other words, after compaction, it will only contain keys set during last interval.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 17 02:54:36 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/etcd3/compact_test.go

    	}
    }
    
    // TestCompactConflict tests that two compactors (Let's use C1, C2) are trying to compact etcd cluster with the same
    // logical time.
    // - C1 compacts first. It will succeed.
    // - C2 compacts after. It will fail. But it will get latest logical time, which should be larger by one.
    func TestCompactConflict(t *testing.T) {
    	client := testserver.RunEtcd(t, nil)
    	ctx := context.Background()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 23 14:22:57 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modcmd/tidy.go

    support lazy module loading.)
    
    The -compat flag preserves any additional checksums needed for the
    'go' command from the indicated major Go release to successfully load
    the module graph, and causes tidy to error out if that version of the
    'go' command would load any imported package from a different module
    version. By default, tidy acts as if the -compat flag were set to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/internal/Maven3CompatDependenciesValidator.java

    import org.eclipse.aether.RepositorySystemSession;
    import org.eclipse.aether.artifact.Artifact;
    import org.eclipse.aether.resolution.ArtifactDescriptorResult;
    
    /**
     * Detects Maven3 plugins using maven-compat Maven2 compatibility layer.
     *
     * @since 3.9.3
     */
    @Singleton
    @Named
    class Maven3CompatDependenciesValidator extends AbstractMavenPluginDependenciesValidator {
    
        @Inject
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 09:51:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. src/internal/coverage/cfile/emitdata_test.go

    		return
    	}
    	args := []string{"tool", "covdata", "merge", "-pkg=runtime/coverage",
    		"-o", testGoCoverDir, "-i", gocoverdir}
    	t.Logf("up-merge of covdata from %s to %s", gocoverdir, testGoCoverDir)
    	t.Logf("executing: go %+v", args)
    	cmd := exec.Command(testenv.GoToolPath(t), args...)
    	if b, err := cmd.CombinedOutput(); err != nil {
    		t.Fatalf("covdata merge failed (%v): %s", err, b)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top