Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 492 for prepending (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_tensor_helper.cc

          common_dims.resize(common_rank, ShapedType::kDynamic);
        } else if (common_rank != rank) {
          return op->emitError()
                 << "operand type " << ranked_ty
                 << " is not compatible with preceding operands; expected rank: "
                 << common_rank;
        }
    
        for (int64_t i = 0, e = common_rank; i != e; i++) {
          if (i == dim_to_mask) continue;
    
          int64_t dim = ranked_ty.getDimSize(i);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/tunnelingconfig/apply.go

    	networking "istio.io/api/networking/v1alpha3"
    )
    
    type ApplyFunc = func(tcpProxy *tcp.TcpProxy, destinationRule *networking.DestinationRule, subsetName string)
    
    // Apply configures tunneling_config in a given TcpProxy depending on the destination rule and the destination hosts
    var Apply ApplyFunc = func(tcpProxy *tcp.TcpProxy, destinationRule *networking.DestinationRule, subsetName string) {
    	var tunnelSettings *networking.TrafficPolicy_TunnelSettings
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DetachedConfigurationsIntegrationTest.groovy

                "Configurations should not act as both a resolution root and a variant simultaneously. Depending on the resolved configuration in this manner has been deprecated. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/idn/IdnaMappingTable.kt

     *
     *  * **b0b1s7**: (b0 << 14) + (b1 << 7)
     *  * **b2b3s2**: (b2 << 9) + (b3 << 2)
     *
     * b0b1s7 is the section prefix. If a section is omitted, that means its ranges data exactly matches
     * that of the preceding section.
     *
     * b2b3s2 is the offset into the ranges data. It is shifted by 2 because ranges are 4-byte aligned.
     *
     * Mappings Data (4,719 bytes)
     * ===========================
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Apr 02 11:39:58 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/android-kotlin-example/app/build.gradle

                    sourcePath = "${productFlavorName}/${buildTypeName}"
                }
                def testTaskName = "test${sourceName.capitalize()}UnitTest"
                // Create coverage task of form 'testFlavorTypeCoverage' depending on 'testFlavorTypeUnitTest'
                task "${testTaskName}Coverage" (type:JacocoReport, dependsOn: "$testTaskName") {
                    group = "Reporting"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/analyze.kt

    ): R {
        val sessionProvider = KaSessionProvider.getInstance(useSiteKtModule.project)
        return sessionProvider.analyze(useSiteKtModule, action)
    }
    
    /**
     * Executes the given [action] in a [KaSession] context.
     * Depending on the passed [resolutionMode], declarations inside a file copy will be treated in a specific way.
     *
     * Note that the [useSiteKtElement] must be inside a dangling file copy.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. pkg/controller/podgc/gc_controller_test.go

    				{name: "c3", phase: v1.PodPending, nodeName: "worker-2"},
    				{name: "d3", phase: v1.PodRunning, nodeName: "worker-2"},
    				{name: "e3", phase: v1.PodUnknown, nodeName: "worker-2"},
    
    				// pods a4, b4, c4, d4 and e4 are on node worker-3
    				{name: "a4", nodeName: "worker-3"},
    				{name: "b4", deletionTimeStamp: &metav1.Time{}, nodeName: "worker-3"},
    				{name: "c4", phase: v1.PodPending, nodeName: "worker-3"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/plugins/PluginInstantiator.java

    import org.gradle.api.reflect.ObjectInstantiationException;
    import org.gradle.internal.reflect.Instantiator;
    
    import java.lang.reflect.Modifier;
    
    /**
     * An instantiator that uses the correct instantiation scheme depending on the plugin type.  This allows
     * us to use a decorated instantiator for types that need it (such as software type plugins) and continue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/init/preflight.go

    		return nil
    	}
    
    	fmt.Println("[preflight] Pulling images required for setting up a Kubernetes cluster")
    	fmt.Println("[preflight] This might take a minute or two, depending on the speed of your internet connection")
    	fmt.Println("[preflight] You can also perform this action beforehand using 'kubeadm config images pull'")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. src/runtime/race/testdata/rangefunc_test.go

    				if !done.Load() && !yield(i, s[i]) {
    					done.Store(true)
    					c <- false
    				}
    			}
    			c <- true
    			return
    		}()
    		if !<-c {
    			return
    		}
    		<-c
    	}
    }
    
    // foo is racy, or not, depending on the value of v
    // (0-4 == racy, otherwise, not racy).
    func foo(v int) int64 {
    	var asum atomic.Int64
    	for i, x := range ofSliceIndex([]int64{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}) {
    		if i%5 == v {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top