Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 611 for Unreserve (0.54 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types_jsonschema.go

    	// expressions. This includes:
    	// - Unknown field values that are preserved by object schemas with x-kubernetes-preserve-unknown-fields.
    	// - Object properties where the property schema is of an "unknown type". An "unknown type" is recursively defined as:
    	//   - A schema with no type and x-kubernetes-preserve-unknown-fields set to true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:23:23 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalSwiftModifyCppDepApp.groovy

                alternateMain = new SwiftMainWithCppDep(library.alternateGreeter)
            }
    
            @Override
            final List<IncrementalElement.Transform> getIncrementalChanges() {
                [preserve(main)]
            }
    
            final String moduleName = "App"
    
            @Override
            final String getExpectedOutput() {
                main.expectedOutput
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/folders.cc

        }
        return FoldAdaptor(operation);
      }
    
      // Gets a list of ElementsAttr behind each constant operand.
      llvm::SmallVector<ElementsAttr> OperandData() {
        llvm::SmallVector<ElementsAttr> res;
        res.reserve(operation_->getNumOperands());
        for (auto opr : operation_->getOperands()) {
          auto op = llvm::dyn_cast<stablehlo::ConstantOp>(opr.getDefiningOp());
          res.push_back(op.getValue());
        }
        return res;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 06:11:55 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/projects/transform/after.pom

          <plugins>
            <plugin>
              <artifactId>maven-compiler-plugin</artifactId>
              <version>2.1</version>
              <configuration>
                <source>1.5</source>
                <target xml:space="preserve">  1.5  </target>
              </configuration>
            </plugin>
            <plugin>
              <artifactId>maven-ear-plugin</artifactId>
              <version>3.3.0</version>
              <configuration>
                <modules>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 07:51:37 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalSwiftModifyCppDepModuleMapApp.groovy

                alternateMain = new SwiftMainWithCppDep(library.alternateGreeter)
            }
    
            @Override
            final List<IncrementalElement.Transform> getIncrementalChanges() {
                [preserve(main)]
            }
    
            final String moduleName = "App"
    
            @Override
            final String getExpectedOutput() {
                main.expectedOutput
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. src/syscall/asm_linux_amd64.s

    TEXT ·rawVforkSyscall(SB),NOSPLIT|NOFRAME,$0-48
    	MOVQ	a1+8(FP), DI
    	MOVQ	a2+16(FP), SI
    	MOVQ	a3+24(FP), DX
    	MOVQ	$0, R10
    	MOVQ	$0, R8
    	MOVQ	$0, R9
    	MOVQ	trap+0(FP), AX	// syscall entry
    	POPQ	R12 // preserve return address
    	SYSCALL
    	PUSHQ	R12
    	CMPQ	AX, $0xfffffffffffff001
    	JLS	ok2
    	MOVQ	$-1, r1+32(FP)
    	NEGQ	AX
    	MOVQ	AX, err+40(FP)
    	RET
    ok2:
    	MOVQ	AX, r1+32(FP)
    	MOVQ	$0, err+40(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/cases/cases.go

    }
    
    // Fold returns a Caser that implements Unicode case folding. The returned Caser
    // is stateless and safe to use concurrently by multiple goroutines.
    //
    // Case folding does not normalize the input and may not preserve a normal form.
    // Use the collate or search package for more convenient and linguistically
    // sound comparisons. Use golang.org/x/text/secure/precis for string comparisons
    // where security aspects are a concern.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. cmd/kube-scheduler/app/options/options_test.go

    									{Name: "InterPodAffinity"},
    								},
    							},
    							Score:      defaults.PluginsV1.Score,
    							Bind:       defaults.PluginsV1.Bind,
    							PreBind:    defaults.PluginsV1.PreBind,
    							Reserve:    defaults.PluginsV1.Reserve,
    							MultiPoint: defaults.PluginsV1.MultiPoint,
    						},
    						PluginConfig: []kubeschedulerconfig.PluginConfig{
    							{
    								Name: "InterPodAffinity",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  9. tensorflow/c/eager/unified_api_testutil.cc

        absl::flat_hash_set<int> null_indices;
        {
          AbstractContextPtr func_ctx(BuildFunction(fn_name));
          std::vector<AbstractTensorHandle*> func_inputs;
          func_inputs.reserve(inputs.size());
          TF_RETURN_IF_ERROR(
              CreateParamsForInputs(func_ctx.get(), inputs, &func_inputs));
          std::vector<AbstractTensorHandle*> model_outputs;
          model_outputs.resize(outputs.size());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 13:57:45 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleIsolationIntegrationTest.groovy

    //        outputContains("project name = b")
    
            where:
            functionType | modifier
            "regular"    | ""
            "static"     | "static "
        }
    
        def 'lifecycle actions preserve user code application context for scripts'() {
            given:
            settingsFile """
                gradle.lifecycle.beforeProject {
                    println("before:" + $currentApplication)
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top