Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for mutable_s (0.17 sec)

  1. src/cmd/cgo/gcc.go

    		return false
    	}
    	s = s[:len(s)-3]
    	if s == "CFType" {
    		return true
    	}
    	if c.getTypeIDs[s] {
    		return true
    	}
    	if i := strings.Index(s, "Mutable"); i >= 0 && c.getTypeIDs[s[:i]+s[i+7:]] {
    		// Mutable and immutable variants share a type ID.
    		return true
    	}
    	return false
    }
    
    // Comment from Darwin's CFInternal.h
    /*
    // Tagged pointer support
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  2. pkg/apis/batch/validation/validation.go

    		}
    		return int32(x), int32(y), nil
    	}
    	return int32(x), int32(x), nil
    }
    
    type JobValidationOptions struct {
    	apivalidation.PodValidationOptions
    	// Allow mutable node affinity, selector and tolerations of the template
    	AllowMutableSchedulingDirectives bool
    	// Allow elastic indexed jobs
    	AllowElasticIndexedJobs bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            expect:
            def replaced = collection.replace(Stub(FileCollectionInternal), {})
            replaced.is(collection)
        }
    
        def "can replace one of the elements of a mutable collection"() {
            def collection1 = Mock(FileCollectionInternal)
            def collection2 = Mock(FileCollectionInternal)
            def replaced1 = Stub(FileCollectionInternal)
            def supplier = Stub(Supplier)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  4. pkg/controller/daemon/daemon_controller.go

    	for _, ds := range dsList {
    		// If NodeShouldRunDaemonPod needs to uses other than Labels and Taints (mutable) properties of node, it needs to update shouldIgnoreNodeUpdate.
    		oldShouldRun, oldShouldContinueRunning := NodeShouldRunDaemonPod(oldNode, ds)
    		currentShouldRun, currentShouldContinueRunning := NodeShouldRunDaemonPod(curNode, ds)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.h"
    #include "tensorflow/compiler/mlir/lite/offset_buffer.h"
    #include "tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.h"
    #include "tensorflow/compiler/mlir/lite/schema/mutable/schema_generated.h"
    #include "tensorflow/compiler/mlir/lite/schema/schema_utils.h"
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.h"
    #include "tensorflow/compiler/mlir/lite/utils/const_tensor_utils.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            this.displayName = Describables.memoize(new ConfigurationDescription(identityPath));
            this.configurationAttributes = new FreezableAttributeContainer(attributesFactory.mutable(), this.displayName);
    
            this.resolutionAccess = new ConfigurationResolutionAccess();
            this.resolvableDependencies = instantiator.newInstance(ConfigurationResolvableDependencies.class, this);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

            },
            "storedVersions": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  8. src/runtime/traceback.go

    // their receiver is on the stack, so they still emit write barriers. Here we
    // address that by carefully avoiding any pointers in this type. Another
    // approach would be to split this into a mutable part that's passed by pointer
    // but contains no pointers itself and an immutable part that's passed and
    // returned by value and can contain pointers. We could potentially hide that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top