Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,441 for told (0.08 sec)

  1. pkg/ctrlz/assets/static/css/dark_syntax-1.14.0.css

    .token.char,
    .token.attr-value,
    .token.regex,
    .token.variable {
        color: #7ec699;
    }
    
    .token.operator,
    .token.entity,
    .token.url {
        color: #67cdcc;
    }
    
    .token.important,
    .token.bold {
        font-weight: bold;
    }
    .token.italic {
        font-style: italic;
    }
    
    .token.entity {
        cursor: help;
    }
    
    .token.inserted {
        color: green;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      }
    
      // Also fold if `input` has a known rank.
      auto input_type = getInput().getType().cast<ShapedType>();
      // Do not fold if rank is zero because the TFLite converter doesn't
      // distinguish between unranked input and scalar input due to b/138865275.
      // TODO(b/138865275): Remove `input_type.getRank() != 0` in the following
      // predicate and fold the op when rank is zero.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  3. internal/bucket/object/lock/lock.go

    		mode = RetCompliance
    	}
    	return mode
    }
    
    // LegalHoldStatus - object legal hold status.
    type LegalHoldStatus string
    
    const (
    	// LegalHoldOn - legal hold is on.
    	LegalHoldOn LegalHoldStatus = "ON"
    
    	// LegalHoldOff - legal hold is off.
    	LegalHoldOff LegalHoldStatus = "OFF"
    )
    
    // Valid - returns true if legal hold status has valid values
    func (l LegalHoldStatus) Valid() bool {
    	switch l {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_layout_helper.h

        ArrayAttr attr_value = pair.second;
        (*op)->setAttr(attr_name,
                       ShuffleArrayAttr(attr_value, reverse_permutation));
      }
    
      auto fold = cast<FoldOperandsTransposeInterface>(op->getOperation());
      for (unsigned idx : fold.GetLayoutDependentResults()) {
        OpResult result = op->getOperation()->getResult(idx);
        result.setType(
            ShuffleRankedTensorType(result.getType(), reverse_permutation));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/AbstractMultimapAsMapImplementsMapTest.java

       * implementation, because {@code map.get()} returns a view collection that changes in the course
       * of a call to {@code remove()}. Thus, the expectation doesn't hold that {@code map.remove(x)}
       * returns the same value which {@code map.get(x)} did immediately beforehand.
       */
      @Override
      public void testRemove() {
        final Map<String, Collection<Integer>> map;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/slog/slog.go

    type position int
    
    const (
    	// key is an argument position that should hold a string key or an Attr.
    	key position = iota
    	// value is an argument position that should hold a value.
    	value
    	// unknown represents that we do not know if position should hold a key or a value.
    	unknown
    )
    
    func run(pass *analysis.Pass) (any, error) {
    	var attrType types.Type // The type of slog.Attr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. src/runtime/race/race_test.go

    		H = 10
    	)
    	var wg sync.WaitGroup
    	wg.Add(G)
    	for g := 0; g < G; g++ {
    		go func() {
    			defer wg.Done()
    			hold := make([][]uint32, H)
    			for i := 0; i < b.N; i++ {
    				a := make([]uint32, S)
    				atomic.AddUint32(&a[rand.Intn(len(a))], 1)
    				hold[rand.Intn(len(hold))] = a
    			}
    			_ = hold
    		}()
    	}
    	wg.Wait()
    }
    
    func BenchmarkStackLeak(b *testing.B) {
    	done := make(chan bool, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyCustomStatusLatestVersionIntegrationTest.groovy

            ivyRepo.module('org.test', 'projectA', '1.2').withStatus('gold').publish()
            ivyRepo.module('org.test', 'projectA', '1.0').withStatus('platin').publish()
            run 'retrieve'
    
            then:
            file('libs').assertHasDescendants("projectA-${version}.jar")
    
            where:
            status   | version
            "bronze" | "1.3"
            "silver" | "1.3"
            "gold"   | "1.2"
            "platin" | "1.0"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/types.go

    }
    
    const (
    	ContentTypeJSON     string = "application/json"
    	ContentTypeYAML     string = "application/yaml"
    	ContentTypeProtobuf string = "application/vnd.kubernetes.protobuf"
    )
    
    // RawExtension is used to hold extensions in external versions.
    //
    // To use this, make a field which has RawExtension as its type in your external, versioned
    // struct, and Object in your internal struct. You also need to register your
    // various plugin types.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 19:12:58 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. pkg/kubelet/prober/worker_test.go

    		}
    
    		// Set a new container ID to lift the hold. The next probe will succeed.
    		status.ContainerStatuses[0].ContainerID = "test://newCont_ID"
    		m.statusManager.SetPodStatus(w.pod, status)
    		msg = "hold lifted"
    		expectContinue(t, w, w.doProbe(ctx), msg)
    		expectResult(t, w, results.Success, msg)
    		if w.onHold {
    			t.Errorf("Prober should not be on hold anymore")
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 23:48:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top