Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 517 for admitted (0.15 sec)

  1. tensorflow/compiler/aot/embedded_protocol_buffers.h

      // protobuf instance from the corresponding static data emitted into the
      // object file.
      struct CPPShim {
        // `expression` is a C++ expression that creates an instance of said
        // protocol buffer when executed.
        string expression;
    
        // `variable_decl` is an "extern C" array declaration that is used in
        // `expression`.  It must be visible wherever `expression` is emitted.
        string variable_decl;
      };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 10 18:19:50 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. pkg/kubeapiserver/admission/exclusion/resources.go

    package exclusion
    
    import (
    	"slices"
    
    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    // include is the list of resources that the expression-based admission controllers
    // should intercept.
    // The version is omitted, all versions of the same GroupResource are treated the same.
    // If a resource is transient, i.e., not persisted in the storage, the resource must be
    // in either include or excluded list.
    var included = []schema.GroupResource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 23:31:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/user-feature/settings.gradle

    // == Define locations for build logic ==
    pluginManagement {
        repositories {
            gradlePluginPortal() // if pluginManagement.repositories looks like this, it can be omitted as this is the default
        }
        includeBuild('../build-logic')
    }
    
    // == Define locations for components ==
    dependencyResolutionManagement {
        repositories {
            mavenCentral()
        }
    }
    includeBuild('../platforms')
    includeBuild('../domain-model')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 579 bytes
    - Viewed (0)
  4. src/runtime/coverage/coverage.go

    // license that can be found in the LICENSE file.
    
    package coverage
    
    import (
    	"internal/coverage/cfile"
    	"io"
    )
    
    // initHook is invoked from main.init in programs built with -cover.
    // The call is emitted by the compiler.
    func initHook(istest bool) {
    	cfile.InitHook(istest)
    }
    
    // WriteMetaDir writes a coverage meta-data file for the currently
    // running program to the directory specified in 'dir'. An error will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. cmd/xl-storage-format-v2_gen.go

    	o = msgp.Require(b, z.Msgsize())
    	// check for omitted fields
    	zb0001Len := uint32(1)
    	var zb0001Mask uint8 /* 1 bits */
    	_ = zb0001Mask
    	if z.ObjectV2 == nil {
    		zb0001Len--
    		zb0001Mask |= 0x1
    	}
    	// variable map header, size zb0001Len
    	o = append(o, 0x80|uint8(zb0001Len))
    	if zb0001Len == 0 {
    		return
    	}
    	if (zb0001Mask & 0x1) == 0 { // if not omitted
    		// string "V2Obj"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationListenerManager.java

     * Listeners must be sure to remove themselves if they want to only listen for a single build.
     *
     * Listeners are notified in registration order.
     * Started and progress notifications are emitted in registration order,
     * while finished notifications are emitted in reverse registration order.
     *
     * Listeners will not receive progress notifications for events before they have received
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/aggregation/settings.gradle

    // == Define locations for build logic ==
    pluginManagement {
        repositories {
            gradlePluginPortal() // if pluginManagement.repositories looks like this, it can be omitted as this is the default
        }
        includeBuild('../build-logic')
    }
    
    // == Define locations for components ==
    dependencyResolutionManagement {
        repositories {
            mavenCentral()
        }
    }
    includeBuild('../platforms')
    includeBuild('../admin-feature')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 580 bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyFactory.java

         *
         * <p>
         * Classifier and extension may each separately be omitted. Version may be omitted if there is no classifier.
         * </p>
         *
         * @param dependencyNotation the dependency notation
         * @return the new dependency
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 06 21:43:58 UTC 2022
    - 4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/aggregation/settings.gradle.kts

    // == Define locations for build logic ==
    pluginManagement {
        repositories {
            gradlePluginPortal() // if pluginManagement.repositories looks like this, it can be omitted as this is the default
        }
        includeBuild("../build-logic")
    }
    
    // == Define locations for components ==
    dependencyResolutionManagement {
        repositories {
            mavenCentral()
        }
    }
    includeBuild("../platforms")
    includeBuild("../admin-feature")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 580 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/domain-model/settings.gradle.kts

    // == Define locations for build logic ==
    pluginManagement {
        repositories {
            gradlePluginPortal() // if pluginManagement.repositories looks like this, it can be omitted as this is the default
        }
        includeBuild("../build-logic")
    }
    
    // == Define locations for components ==
    dependencyResolutionManagement {
        repositories {
            mavenCentral()
        }
    }
    includeBuild("../platforms")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 607 bytes
    - Viewed (0)
Back to top