Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,242 for began (0.06 sec)

  1. tensorflow/compiler/mlir/lite/utils/utils.h

                                mlir::IntegerType::get(begin.getContext(), 32)),
          llvm::ArrayRef(offsets));
    }
    
    // Check if the offset between two dense attribute values is non-negative.
    inline bool HasNonNegativeOffset(Attribute begin, Attribute end) {
      return HasNonNegativeValues(GetOffSet(begin, end));
    }
    
    // Return true if the permutation value only swaps the last two dimensions
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/upload/date.go

    	}
    	age := uploadStartTime.Sub(t)
    	return age > distantPast
    }
    
    // counterDateSpan parses the counter file named fname and returns the (begin,
    // end) span recorded in its metadata, or an error if this data could not be
    // extracted.
    func (u *uploader) counterDateSpan(fname string) (begin, end time.Time, _ error) {
    	parsed, err := u.parseCountFile(fname)
    	if err != nil {
    		return time.Time{}, time.Time{}, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanPropertyWriter.kt

                }
            }
        }
    
        private
        fun conventionValueOf(bean: Any, field: Field, isExplicitValue: Field) =
            field.get(bean).let { fieldValue ->
                if (isExplicitValue.get(bean).uncheckedCast()) {
                    fieldValue
                } else {
                    getConventionValue(bean, field, fieldValue)
                        ?.takeIf { conventionValue ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. src/encoding/pem/pem_test.go

    		Decode(data)
    	}
    }
    
    var pemData = testingKey(`verify return:0
    -----BEGIN CERTIFICATE-----
    sdlfkjskldfj
      -----BEGIN CERTIFICATE-----
    ---
    Certificate chain
     0 s:/C=AU/ST=Somewhere/L=Someplace/O=Foo Bar/CN=foo.example.com
       i:/C=ZA/O=CA Inc./CN=CA Inc
    -----BEGIN CERTIFICATE-----
    testing
    -----BEGIN CERTIFICATE-----
    -----BEGIN CERTIFICATE-----
    MIID6TCCA1ICAQEwDQYJKoZIhvcNAQEFBQAwgYsxCzAJBgNVBAYTAlVTMRMwEQYD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:56:00 UTC 2022
    - 23.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_operator.h

        auto vec = llvm::to_vector(
            llvm::map_range(elements.getValues<bool>(),
                            [&](bool value) -> uint8_t { return value ? 1 : 0; }));
        return std::vector<bool>(vec.begin(), vec.end());
      }
    
      return std::vector<bool>();
    }
    
    template <>
    inline std::vector<int8_t> GetVector(DenseElementsAttr elements) {
      auto type = elements.getType();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 21:00:09 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  6. src/crypto/x509/verify_test.go

    	return strings.Join(name.Country, ",") + "/" + strings.Join(name.Organization, ",") + "/" + strings.Join(name.OrganizationalUnit, ",") + "/" + name.CommonName
    }
    
    const gtsIntermediate = `-----BEGIN CERTIFICATE-----
    MIIFljCCA36gAwIBAgINAgO8U1lrNMcY9QFQZjANBgkqhkiG9w0BAQsFADBHMQsw
    CQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEU
    MBIGA1UEAxMLR1RTIFJvb3QgUjEwHhcNMjAwODEzMDAwMDQyWhcNMjcwOTMwMDAw
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  7. security/pkg/pki/util/crypto_test.go

    -----END RSA PRIVATE KEY-----`
    
    	keyInvalidRSA = `
    -----BEGIN RSA PRIVATE KEY-----
    -----END RSA PRIVATE KEY-----`
    
    	keyECDSA = `
    -----BEGIN EC PRIVATE KEY-----
    MGgCAQEEHBMUyVWFKTW4TwtwCmIAxdpsBFn0MV7tGeSA32CgBwYFK4EEACGhPAM6
    AATCkAx7whb2k3xWm+UjlFWFiV11oYmIdYgXqiAQkiz7fEq6QFhsjjCizeGzAlhT
    TmngRSxv/dSvGA==
    -----END EC PRIVATE KEY-----`
    
    	keyInvalidECDSA = `
    -----BEGIN EC PRIVATE KEY-----
    -----END EC PRIVATE KEY-----`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTaskFactoryTest.groovy

            TaskWithNestedBean                 | 'bean'     | [null]                | Bean.class
            TaskWithNestedObject               | 'bean.key' | [['key': new Bean()]] | Bean.class
            TaskWithNestedIterable             | 'beans.$0' | [new Bean()]          | Bean.class
            TaskWithNestedBeanWithPrivateClass | 'bean'     | [null, null]          | Bean2.class
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/flow-services/src/integTest/groovy/org/gradle/internal/flow/services/FlowScopeIntegrationTest.groovy

                        }
                    }
                }
    
                apply type: FlowActionPlugin
            '''
    
            when:
            succeeds 'help'
    
            then: 'shared bean should have been isolated'
            output.count('Bean.value = 42') == 2
            outputDoesNotContain 'Bean.value = 43'
        }
    
        def 'flow actions cannot depend on tasks'() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:01:34 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheUnsupportedTypesIntegrationTest.groovy

                    private final ${baseType.name} badReference
                    private final bean = new SomeBean()
                    private final beanWithSameType = new SomeBean()
    
                    SomeTask() {
                        badReference = ${reference}
                        bean.badReference = ${reference}
                        beanWithSameType.badReference = ${reference}
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28.3K bytes
    - Viewed (0)
Back to top