Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 339 for salary (0.12 sec)

  1. pkg/scheduler/framework/plugins/noderesources/balanced_allocation_test.go

    				{Name: string(v1.ResourceMemory), Weight: 1},
    				{Name: "nvidia.com/gpu", Weight: 1},
    			}},
    			runPreScore: true,
    		},
    		// Only one node (node1) has the scalar resource, pod doesn't request the scalar resource and the scalar resource should be skipped for consideration.
    		// Node1: std = 0, score = 100
    		// Node2: std = 0, score = 100
    		{
    			pod:          st.MakePod().Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  2. src/crypto/ed25519/ed25519.go

    		panic("ed25519: bad seed length: " + strconv.Itoa(l))
    	}
    
    	h := sha512.Sum512(seed)
    	s, err := edwards25519.NewScalar().SetBytesWithClamping(h[:32])
    	if err != nil {
    		panic("ed25519: internal error: setting scalar failed")
    	}
    	A := (&edwards25519.Point{}).ScalarBaseMult(s)
    
    	publicKey := A.Bytes()
    
    	copy(privateKey, seed)
    	copy(privateKey[32:], publicKey)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/pruning/algorithm.go

    			}
    			return
    		}
    		for i, v := range x {
    			opts.AppendIndex(i)
    			prune(v, s.Items, opts)
    			opts.ParentPath = opts.ParentPath[:origPathLen]
    		}
    	default:
    		// scalars, do nothing
    	}
    }
    
    func skipPrune(x interface{}, s *structuralschema.Structural, opts *structuralschema.UnknownFieldPathOptions) {
    	if s == nil {
    		return
    	}
    	origPathLen := len(opts.ParentPath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 18 14:55:12 UTC 2022
    - 4K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/crdclient/client_test.go

    				Labels:    selectedLabels,
    			},
    			Spec: v1alpha3.ServiceEntry{},
    		}
    
    		clienttest.NewWriter[*clientnetworkingv1alpha3.ServiceEntry](t, fake).Create(obj)
    		// canary revision should receive only global objects and objects with the canary revision
    		if selectedLabels == nil || reflect.DeepEqual(selectedLabels, labels[1]) {
    			expectedCanary = append(expectedCanary, TranslateObject(obj, gvk.ServiceEntry, ""))
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentAttributesRulesIntegrationTest.groovy

                    }
    
                    public void execute(ComponentMetadataContext context) {
                        context.details.attributes {
                            attribute targetAttribute, ${fixApplied ? '"qa"' : '"canary"'}
                        }
                    }
                }
    
                dependencies {
                    attributesSchema {
                        attribute(quality)
                    }
                    components {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/VariantAttributesRulesIntegrationTest.groovy

            given:
            repository {
                id('org.test:module:1.0') {
                    variant('customVariant1') {
                        attribute 'quality', 'canary'
                    }
                    variant('customVariant2') {
                        attribute 'quality', 'canary'
                    }
                }
            }
            buildFile << """
                def quality = Attribute.of("quality", String)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  7. docs/tr/docs/tutorial/path-params.md

        Bu tanımlamayla birlikte, **FastAPI** size otomatik istek <abbr title="HTTP isteği ile birlikte gelen string'i Python verisine dönüştürme">"ayrıştırma"</abbr> özelliği sağlar.
    
    ## Veri Doğrulama
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/utils/bfloat16_type_test.cc

      DialectRegistry mlir_registry;
      RegisterCommonToolingDialects(mlir_registry);
      context->appendDialectRegistry(mlir_registry);
      return context;
    }
    
    TEST(IsLargeFloatTypeTest, scalars) {
      auto context = CreateContext();
    
      EXPECT_FALSE(IsLargeFloatType(Float8E4M3FNType::get(context.get())));
      EXPECT_FALSE(IsLargeFloatType(Float16Type::get(context.get())));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 19 23:51:52 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_arith_ops_folder.h

                                      ShapedType result_ty) -> bool {
        // Scalar identity is broadcastable to any operand shape, we only need to
        // check that operand has the same shape as a result.
        bool scalar_identity = identity_ty.hasRank() && identity_ty.getRank() == 0;
        if (scalar_identity) return operand_ty == result_ty;
    
        // If identity is not a scalar, we must verify that identity shape is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        Arg<TF_NumberTensor, [{Must be a scalar.}]>:$beta1_power,
        Arg<TF_NumberTensor, [{Must be a scalar.}]>:$beta2_power,
        Arg<TF_NumberTensor, [{Scaling factor. Must be a scalar.}]>:$lr,
        Arg<TF_NumberTensor, [{Momentum factor. Must be a scalar.}]>:$beta1,
        Arg<TF_NumberTensor, [{Momentum factor. Must be a scalar.}]>:$beta2,
        Arg<TF_NumberTensor, [{Ridge term. Must be a scalar.}]>:$epsilon,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top