Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 6,053 for haxe (0.05 sec)

  1. hack/golangci-hints.yaml

          path-except: cmd/kubeadm
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

      // attribute have no host device attribute.
      pm.addPass(mlir::TFTPU::CreateTPUClusterCleanupAttributesPass());
      pm.addNestedPass<FuncOp>(mlir::TFDevice::CreateDeviceAttributeToLaunchPass());
      // Running canonicalizer before decomposing resource ops in cluster helps the
      // latter pass to converge faster as it does not have to spend time folding
      // away dead ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. src/syscall/syscall_windows_test.go

    	}
    
    	hostname, err := os.Hostname()
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	have := strings.ReplaceAll(string(out), "\n", "")
    	have = strings.ReplaceAll(have, "\r", "")
    	want := fmt.Sprintf("%sHello World%s", hostname, hostname)
    	if have != want {
    		t.Fatalf("c program output is wrong: got %q, want %q", have, want)
    	}
    }
    
    func TestGetwd_DoesNotPanicWhenPathIsLong(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 16:33:09 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. cmd/httprange.go

    	if sepIndex == -1 {
    		return nil, fmt.Errorf("'%s' does not have a valid range value", rangeString)
    	}
    
    	offsetBeginString := byteRangeString[:sepIndex]
    	offsetBegin := int64(-1)
    	// Convert offsetBeginString only if its not empty.
    	if len(offsetBeginString) > 0 {
    		if offsetBeginString[0] == '+' {
    			return nil, fmt.Errorf("Byte position ('%s') must not have a sign", offsetBeginString)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 08:44:07 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/split_merged_operands.cc

    // desirable but not for those TFLite ops which have variable tensors as inputs.
    // Yes, they have identical input values, but those identical values are
    // "stateful", their values can change during invocations.
    //
    // A typical example is unidirectional_sequence_lstm have two variable tensor
    // inputs: activation state & cell state. They may have same initial values
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/invocation/Gradle.java

         * Adds an action to be called when the projects for the build have been created from the settings.
         *
         * None of the projects have been evaluated.
         *
         * @param action The action to execute.
         * @since 3.4
         */
        void projectsLoaded(Action<? super Gradle> action);
    
        /**
         * Adds a closure to be called when all projects for the build have been evaluated.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/partially_decluster_pass.cc

        //
        // Doing so will break up the cluster.  Even if we were okay with breaking
        // up the cluster we will at least have to relabel the two clusters to have
        // different cluster names.
        //
        // We may want to revisit this in the future: we may have cases where OP is
        // a small computation that does not benefit from XLA while XLA can optimize
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. src/internal/godebug/godebug_test.go

    		}
    	}
    	slices.Sort(want)
    
    	var have []string
    	for _, line := range strings.Split(string(out), "\n") {
    		if strings.Contains(line, "godebug_test.go:") {
    			have = append(have, line[strings.LastIndex(line, "godebug_test.go:"):])
    		}
    	}
    	slices.Sort(have)
    
    	if !reflect.DeepEqual(have, want) {
    		t.Errorf("bad bisect output:\nhave %v\nwant %v\ncomplete output:\n%s", have, want, string(out))
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/certificates/v1alpha1/generated.proto

    // ClusterTrustBundles by default.  Users who only have namespace-level access
    // to a cluster can read ClusterTrustBundles by impersonating a serviceaccount
    // that they have access to.
    //
    // It can be optionally associated with a particular assigner, in which case it
    // contains one valid set of trust anchors for that signer. Signers may have
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/fuse_test.go

    	for k, b := range fun.blocks {
    		if k[:1] == "z" && b.Kind != BlockInvalid {
    			t.Errorf("case3 %s was not eliminated, but should have", k)
    		}
    	}
    }
    
    func TestFuseSideEffects(t *testing.T) {
    	c := testConfig(t)
    	// Case1, test that we don't fuse branches that have side effects but
    	// have no use (e.g. followed by infinite loop).
    	// See issue #36005.
    	fun := c.Fun("entry",
    		Bloc("entry",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top