Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for rounds (0.26 sec)

  1. cmd/admin-handlers.go

    	mapIfNotPresent := func(m map[string]string, key string, val string) {
    		_, found := m[key]
    		if !found {
    			m[key] = val
    		}
    	}
    
    	_, found := hostAnonymizer[currentURL]
    	if !found {
    		// In distributed setup, anonymized addr = 'poolNum.serverNum'
    		newHost := fmt.Sprintf("pool%d.server%d", poolNum, srvrNum)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/s390x/asmz.go

    	op_LDXBR   uint32 = 0xB345 // FORMAT_RRE        LOAD ROUNDED (extended to long BFP)
    	op_LDXBRA  uint32 = 0xB345 // FORMAT_RRF5       LOAD ROUNDED (extended to long BFP)
    	op_LDXR    uint32 = 0x2500 // FORMAT_RR         LOAD ROUNDED (extended to long HFP)
    	op_LDXTR   uint32 = 0xB3DD // FORMAT_RRF5       LOAD ROUNDED (extended to long DFP)
    	op_LDY     uint32 = 0xED65 // FORMAT_RXY1       LOAD (long)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  3. pkg/scheduler/schedule_one_test.go

    						"node2": framework.NewStatus(framework.UnschedulableAndUnresolvable, `persistentvolumeclaim "unknownPVC" not found`).WithPlugin("VolumeBinding"),
    					},
    					PreFilterMsg:         `persistentvolumeclaim "unknownPVC" not found`,
    					UnschedulablePlugins: sets.New(volumebinding.Name),
    				},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

    internal class InconsistentTypeParameterValuesImpl(
        override val typeParameter: KaTypeParameterSymbol,
        override val type: KaClassLikeSymbol,
        override val bounds: List<KaType>,
        firDiagnostic: KtPsiDiagnostic,
        token: KaLifetimeToken,
    ) : KaAbstractFirDiagnostic<KtClass>(firDiagnostic, token), KaFirDiagnostic.InconsistentTypeParameterValues
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 227.2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    	for addr < lastAddr {
    		// Find the last symbol we'd write.
    		idx := -1
    		for i, s := range syms {
    			if ldr.AttrSubSymbol(s) {
    				continue
    			}
    
    			// If the next symbol's size would put us out of bounds on the total length,
    			// stop looking.
    			end := ldr.SymValue(s) + ldr.SymSize(s)
    			if end > lastAddr {
    				break
    			}
    
    			// We're gonna write this symbol.
    			idx = i
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 232.7K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 231.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

        return %3: tensor<512xi32>
      }
    func.func private @_func(%arg0: tensor<?xi32, #mhlo.type_extensions<bounds = [512]>> {mhlo.sharding = "\08\01\1A\01\01\22\01\00"}) -> (tensor<512xi32>) {
        %0 = "tf.A"(%arg0) {} : (tensor<?xi32, #mhlo.type_extensions<bounds = [512]>>) -> tensor<512xi32>
        return %0 : tensor<512xi32>
      }
    }
    
    // -----
    
    // The following xla.OpSharding is used:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  9. tensorflow/c/c_api.cc

        }                                                                     \
        if (index < 0 || index >= list->response.size()) {                    \
          status->status = InvalidArgument("index out of bounds");            \
          return err_val;                                                     \
        }                                                                     \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/ops.mlir

      func.return %0 : tensor<i1>
    }
    
    // -----
    
    func.func @testRoundInvalidInputType(%arg: tensor<?xi32>) -> tensor<?xi32> {
      // expected-error @+1 {{'tfl.round' op operand #0 must be tensor of 32-bit float values}}
      %0 = "tfl.round"(%arg) : (tensor<?xi32>) -> tensor<?xi32>
      func.return %0 : tensor<?xi32>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
Back to top